From 7fce39a3493bf816a999983f5beeeed43110d614 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sun, 13 Jun 2021 20:38:15 -0700 Subject: [PATCH] README.md: fix function table --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b216052b..64adb12c 100644 --- a/README.md +++ b/README.md @@ -295,7 +295,7 @@ Name | Description --- | --- `uri_escape` | Percent-encodes unsafe URI characters. `sed` | Performs sed-like regex substitution. -`grep` | Searches a string, using a regex, and prints the matching whole-word (e.g. `echo pizza hamburger hotdog | {grep burger}` outputs `hamburger`). +`grep` | Searches a string, using a regex, and prints the matching whole-word (e.g. `echo pizza hamburger hotdog \| {grep burger}` outputs `hamburger`). `pluralize` | Intelligently makes a word or phrase plural. `unquote` | Removes surrounding quotation marks. `title` | Title-cases text. That is, lowercases the text then uppercases the first letter of each word.