From 6bd54d24a4974ed11834791b60fc695096c65cd5 Mon Sep 17 00:00:00 2001 From: Ben Greenman Date: Wed, 20 Feb 2019 12:17:15 -0500 Subject: [PATCH] typo: 'by precede it' Closes #2499 --- pkgs/racket-doc/scribblings/guide/regexp.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/racket-doc/scribblings/guide/regexp.scrbl b/pkgs/racket-doc/scribblings/guide/regexp.scrbl index 00bf0611bc..6d862e7bf2 100644 --- a/pkgs/racket-doc/scribblings/guide/regexp.scrbl +++ b/pkgs/racket-doc/scribblings/guide/regexp.scrbl @@ -51,7 +51,7 @@ character that would need escaping inside a Racket string is @litchar{"}.} If we needed to match the character @litchar{.} itself, we can escape -it by precede it with a @litchar{\}. The character sequence +it by preceding it with a @litchar{\}. The character sequence @litchar{\.} is thus a @tech{metasequence}, since it doesn't match itself but rather just @litchar{.}. So, to match @litchar{a}, @litchar{.}, and @litchar{c} in succession, we use the regexp pattern