aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-12-22 11:46:49 -0500
committerBobby <[email protected]>2022-12-22 11:46:49 -0500
commit1241a7064eb89af86a9c781315414f3afa13e0ec (patch)
tree3d68d2849d18141776147edefe0f233abc7096b0 /docs
parent7b2ac6347e4b841673557a564b839d788bfa51d6 (diff)
downloadedify-1241a7064eb89af86a9c781315414f3afa13e0ec.tar.xz
edify-1241a7064eb89af86a9c781315414f3afa13e0ec.zip
Updated Changelog and Fixed Documentation
Diffstat (limited to 'docs')
-rw-r--r--docs/regex-builder/builder/index.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/regex-builder/builder/index.rst b/docs/regex-builder/builder/index.rst
index ebe2e3b..4b1702f 100644
--- a/docs/regex-builder/builder/index.rst
+++ b/docs/regex-builder/builder/index.rst
@@ -890,7 +890,7 @@ You can use the ``.subexpression()`` method like this:
expr = (
RegexBuilder()
.ignore_case()
- .multiline()
+ .multi_line()
.start_of_input()
.optional().string('0x')
.capture()
@@ -919,7 +919,7 @@ You can use the ``.subexpression()`` method like this:
expr = (
RegexBuilder()
.ignore_case()
- .multiline()
+ .multi_line()
.start_of_input()
.optional().string('0x')
.capture()