Skip to content

Commit

Permalink
Fix a typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
ckreibich committed Nov 23, 2023
1 parent 99701ff commit a1c1285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script-reference/types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ Additional examples:
- ``/foo|bar/i`` matches ``"foo"``, ``"Foo"``, ``"BaR"``, etc.
- ``/foo|(?i:bar)/`` matches ``"foo"`` and ``"BaR"``, but *not* ``"Foo"``.
- ``/"foo"/i`` matches ``"foo"``, but *not* ``"Foo"``.
- ``/foo.bar/`` doesn't matche ``"foo\nbar"``, while ``/foo.bar/s`` does.
- ``/foo.bar/`` doesn't match ``"foo\nbar"``, while ``/foo.bar/s`` does.

The ``i`` and ``s`` modifiers can also be combined in a single pattern
such as ``/foo/is`` or ``/bar/si``. In this case, both case-insensitivity
Expand Down

0 comments on commit a1c1285

Please sign in to comment.