From 41e1eefca7c196f9265cacbca59480bad021ac89 Mon Sep 17 00:00:00 2001 From: Tom McAndrew <42588609+tommcandrew@users.noreply.github.com> Date: Tue, 10 Mar 2020 17:14:48 +0000 Subject: [PATCH] Make section 2.1 title singular --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 055550b..75d0639 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ letter and also it is too short. - [Basic Matchers](#1-basic-matchers) - [Meta Characters](#2-meta-characters) - - [Full Stops](#21-full-stops) + - [The Full Stop](#21-the-full-stops) - [Character Sets](#22-character-sets) - [Negated Character Sets](#221-negated-character-sets) - [Repetitions](#23-repetitions) @@ -133,7 +133,7 @@ square brackets. The meta characters are as follows: |^|Matches the beginning 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 `.` matches any single character. It will not match return or newline characters.