From de42c51c2d955911de8476667bc202c165dc99ed Mon Sep 17 00:00:00 2001 From: Jakub Jankiewicz Date: Wed, 27 Mar 2024 14:30:36 +0100 Subject: [PATCH] grammar --- docs/docs/lips/extension.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/lips/extension.md b/docs/docs/lips/extension.md index 9846a05f..0123f6a9 100644 --- a/docs/docs/lips/extension.md +++ b/docs/docs/lips/extension.md @@ -311,7 +311,7 @@ common lips reader macros). ``` This extension implements raw strig, like in Python, where you don't need to escape the charcters that are thread literally. -In similar way you can implment strings that use backticks you only need to replace `#\"` with `` #\` ``. +Similarly, you can implement strings that use backticks, you only need to replace `#\"` with `` #\` ``. ```scheme (set-special! "$" 'raw-string lips.specials.SYMBOL) @@ -330,7 +330,7 @@ In similar way you can implment strings that use backticks you only need to repl ;; ==> "foo \\ bar" ``` -With this feature in hand you can implement full string internolation (that will probbaly be part of +With this feature in hand you can implement full string interpolation (that will probbaly be part of LIPS Scheme in the future). ### Limitations