diff --git a/README.md b/README.md index 54d7569..b1257d8 100644 --- a/README.md +++ b/README.md @@ -324,9 +324,6 @@ import re = .group() # Whole match. = .group(1) # Part in first bracket. = .groups() # All bracketed parts. -``` - -```python = .start() # Start index of a match. = .end() # Exclusive end index of a match. ``` diff --git a/index.html b/index.html index 59d5298..b630251 100644 --- a/index.html +++ b/index.html @@ -419,8 +419,7 @@ Point(x=1, y=2
<str>   = <Match>.group()   # Whole match.
 <str>   = <Match>.group(1)  # Part in first bracket.
 <tuple> = <Match>.groups()  # All bracketed parts.
-
-
<int>   = <Match>.start()   # Start index of a match.
+<int>   = <Match>.start()   # Start index of a match.
 <int>   = <Match>.end()     # Exclusive end index of a match.
 

Special Sequences