From 27e67e953abd9f1a36891c98f14511c141638c86 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Mon, 10 Feb 2014 18:26:44 -0800 Subject: [PATCH] typo --- hyphenate/scribblings/hyphenate.scrbl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hyphenate/scribblings/hyphenate.scrbl b/hyphenate/scribblings/hyphenate.scrbl index b458bab3..c772bd0d 100644 --- a/hyphenate/scribblings/hyphenate.scrbl +++ b/hyphenate/scribblings/hyphenate.scrbl @@ -130,12 +130,12 @@ Use this function cautiously — if @racket[_joiner] appeared in the original in (unhyphenate (hyphenate "ribbon-cutting ceremony" #\-) #\-) ] -Certain word processors allow users to @link["http://practicaltypography.com/optional-hyphens.html"]{put soft hyphens} in their text. So consider whether it's possible that soft hyphens could appear in your input string. +It's also possible that soft hyphens could appear in your input string. Certain word processors allow users to @link["http://practicaltypography.com/optional-hyphens.html"]{insert soft hyphens} in their text. @examples[#:eval my-eval - (hyphenate "True\x00ADType typefaces") - (unhyphenate (hyphenate "True\x00ADType typefaces")) - (hyphenate (unhyphenate "True\x00ADType typefaces") #\-) + (hyphenate "True\u00ADType typefaces") + (unhyphenate (hyphenate "True\u00ADType typefaces")) + (hyphenate (unhyphenate "True\u00ADType typefaces") #\-) ]