From ccf9d2cd0f84ec59b553b54d28099d3aad514993 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Tue, 30 Aug 2022 20:29:11 -0500 Subject: [PATCH] Moving functionality to MiniDocs. --- repository/Grafoscopio-Utils/String.extension.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/Grafoscopio-Utils/String.extension.st b/repository/Grafoscopio-Utils/String.extension.st index 2e73149..bf91c15 100644 --- a/repository/Grafoscopio-Utils/String.extension.st +++ b/repository/Grafoscopio-Utils/String.extension.st @@ -5,7 +5,7 @@ String >> accentedCharactersCorrection [ | modified corrections | corrections := { 'ó' -> 'ó' . 'ú' -> 'ú' . 'ñ' -> 'ñ' . - 'í' -> 'í' . 'á' -> 'á' . 'é' -> 'é' } asDictionary. + 'í' -> 'í' . 'á' -> 'á' . 'é' -> 'é' . '’' -> $' asString} asDictionary. modified := self copy. corrections keysAndValuesDo: [ :k :v | modified := modified copyReplaceAll: k with: v