Make section 2.1 title singular

This commit is contained in:
Tom McAndrew 2020-03-10 17:14:48 +00:00 committed by GitHub
parent 060cf5c514
commit 41e1eefca7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ letter and also it is too short.
- [Basic Matchers](#1-basic-matchers) - [Basic Matchers](#1-basic-matchers)
- [Meta Characters](#2-meta-characters) - [Meta Characters](#2-meta-characters)
- [Full Stops](#21-full-stops) - [The Full Stop](#21-the-full-stops)
- [Character Sets](#22-character-sets) - [Character Sets](#22-character-sets)
- [Negated Character Sets](#221-negated-character-sets) - [Negated Character Sets](#221-negated-character-sets)
- [Repetitions](#23-repetitions) - [Repetitions](#23-repetitions)
@ -133,7 +133,7 @@ square brackets. The meta characters are as follows:
|^|Matches the beginning of the input.| |^|Matches the beginning of the input.|
|$|Matches the end of the input.| |$|Matches the end of the input.|
## 2.1 Full Stops ## 2.1 The Full Stop
The full stop `.` is the simplest example of a meta character. The meta character `.` The full stop `.` is the simplest example of a meta character. The meta character `.`
matches any single character. It will not match return or newline characters. matches any single character. It will not match return or newline characters.