docs: fix various typos

This commit is contained in:
Ben Boeckel
2019-03-27 15:12:24 -04:00
committed by Nick Craig-Wood
parent 6fb1c8f51c
commit 3d424c6e08
17 changed files with 32 additions and 32 deletions

View File

@@ -60,7 +60,7 @@ A `?` matches any character except a slash `/`.
- matches "lass"
- doesn't match "floss"
A `[` and `]` together make a a character class, such as `[a-z]` or
A `[` and `]` together make a character class, such as `[a-z]` or
`[aeiou]` or `[[:alpha:]]`. See the [go regexp
docs](https://golang.org/pkg/regexp/syntax/) for more info on these.