From 7c246a73dc6b14d4efacc380c72893d6e475cff5 Mon Sep 17 00:00:00 2001 From: Pat Beirne Date: Sat, 24 Apr 2021 15:17:53 -0400 Subject: [PATCH] Update README.md fixed up some typos and styling --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 450bdf4..c24ff24 100644 --- a/README.md +++ b/README.md @@ -373,7 +373,7 @@ If the single-letter command is preceded by a number or number-range, then the e The `i/a/d` commands should be preceeded by a line number, or range; `sed()` will *insert*, *append* or *delete* once for each line in the range. -The ``x/X` patterns are wrapped in a pair of delimiter characters, typically `/`, although almost any other character is allowed other than space or one of `\^$()[]`. Valid X commands are: +The `x/X` patterns are wrapped in a pair of delimiter characters, typically `/`, although almost any other character is allowed other than space or one of `\^$()[]`. Valid X commands are: ``` x/abcd/ @@ -381,7 +381,7 @@ x/abcd/ x!ratio x/y! ``` -Similarly, the s patterns are wrapped in a triplet of delimiter characters, typcially / also. If the search pattern has `()` groups, the replace pattern can refer to them with ``\1 \2`,etc. The /search/replace/ pattern may have a `g` suffix, to replace replaces multiple occurrences on a line. Valid 's' commands are +Similarly, the `s` patterns are wrapped in a triplet of delimiter characters, typcially `/` also. If the search pattern has `()` groups, the replace pattern can refer to them with `\1 \2`,etc. The /search/replace/ pattern may have a `g` suffix, to replace replaces multiple occurrences on a line. Valid 's' commands are ``` s/toronto/Toronto/