diff options
| author | Bobby <[email protected]> | 2022-09-03 02:08:37 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-09-03 02:08:37 -0400 |
| commit | e350fb5b3132a3892c85f80b6653e409f57041e1 (patch) | |
| tree | 1dec4c4895b0aab74d6c371307aeb83080658ecb /README.rst | |
| parent | 9875b355df71a0f935f85d3b082f6febcc663a4f (diff) | |
| download | edify-e350fb5b3132a3892c85f80b6653e409f57041e1.tar.xz edify-e350fb5b3132a3892c85f80b6653e409f57041e1.zip | |
Fixed bugs and passing tests
Diffstat (limited to 'README.rst')
| -rw-r--r-- | README.rst | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |
