Fixed typo (previous commit)

garry-ut99 2024-11-03 19:03:07 +00:00
parent 49b07fca3a
commit 888c99861a

@ -617,7 +617,7 @@ Exclusions `~` and `|` operators are not supported, e.g. `ipaddress=~192.168.1.1
but the above regex solution is not perfect:
- the first above regex excludes too much: `95.216.7.22y` which is unwanted (where `y` is any digit, for example `95.216.7.228`)
- the second above regex even worse, exclude too much: `x95.216.7.22y` (where `x` and/or `y` is any digit, for example `195.216.7.22` or `95.216.7.221` or `195.216.7.221`)
- the second above regex even worse, excludes too much: `x95.216.7.22y` (where `x` and/or `y` is any digit, for example `195.216.7.22` or `95.216.7.221` or `195.216.7.221`)
But still some users might find them useful.