aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-10-06 17:51:10 -0400
committerGitHub <[email protected]>2022-10-06 17:51:10 -0400
commit7d8b9a70cd969f461640559b451d0fa2c83de8d8 (patch)
tree3cd0620d349a363171a92b9f3ed1644bd3516aed
parent320df45087dedf153d132efdbef568e0a6b49b32 (diff)
downloadedify-7d8b9a70cd969f461640559b451d0fa2c83de8d8.tar.xz
edify-7d8b9a70cd969f461640559b451d0fa2c83de8d8.zip
Update index.rst
-rw-r--r--docs/built-in/index.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/built-in/index.rst b/docs/built-in/index.rst
index c14923b..f79571d 100644
--- a/docs/built-in/index.rst
+++ b/docs/built-in/index.rst
@@ -10,7 +10,7 @@ The ``email`` function verifies that a string is a valid email address. The func
.. warning::
- The ``email`` function is not a complete email address validator. It only checks that the string is in the correct format. It does not check that the domain name is valid or that the email address actually exists.
+ The ``email`` function is not a complete email address validator. It only checks that the string is in the correct format. It does not check that the domain name is valid or that the email address actually exists. This shall also be noted that there are certain trade-offs while validating email addresses using regular expressions. Regular expressions do not serve as a robust solution and should be avoided while validating complex email addresses. To learn more, go to `regular-expressions.info/email.html <https://www.regular-expressions.info/email.html>`_.
To use the ``email`` function, import it from the ``edify.library`` module.