aboutsummaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-09-03 02:08:37 -0400
committerBobby <[email protected]>2022-09-03 02:08:37 -0400
commite350fb5b3132a3892c85f80b6653e409f57041e1 (patch)
tree1dec4c4895b0aab74d6c371307aeb83080658ecb /README.rst
parent9875b355df71a0f935f85d3b082f6febcc663a4f (diff)
downloadedify-e350fb5b3132a3892c85f80b6653e409f57041e1.tar.xz
edify-e350fb5b3132a3892c85f80b6653e409f57041e1.zip
Fixed bugs and passing tests
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 2cd7620..b33ee82 100644
--- a/README.rst
+++ b/README.rst
@@ -70,7 +70,7 @@ Regex is a powerful tool, but its syntax is not very intuitive and can be diffic
That's where Edify becomes extremely useful. It allows you to create regular expressions in a programmatic way by invoking the ``RegexBuilder`` class, based on the SuperExpressive_ library. The API uses the `fluent builder pattern <https://en.wikipedia.org/wiki/Fluent_interface>`_, and is completely immutable. It is built to be discoverable and predictable.
- Properties and methods describe what they do in plain English.
-- Order matters! Quantifiers are specified before the thing they change, just like in English (e.g. ``RegexBuilder().exactly(5).digit()``.)
+- Order matters! Quantifiers are specified before the thing they change, just like in English (e.g. ``RegexBuilder().exactly(5).digit()``).
- If you make a mistake, you'll know how to fix it. Edify will guide you towards a fix if your expression is invalid.
- ``subexpressions`` can be used to create meaningful, reusable components.