From d17401e4b163c4e086c6a35b28c2f02058107513 Mon Sep 17 00:00:00 2001 From: N <47500890+avi-cenna@users.noreply.github.com> Date: Sun, 8 Oct 2023 23:19:58 -0400 Subject: [PATCH] Fix triple-quoted string example in readme (#1620) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 069425e..0725e28 100644 --- a/README.md +++ b/README.md @@ -1035,7 +1035,7 @@ $ just --evaluate escapes := "\t\n\r\"\\" ``` -Indented versions of both single- and double-quoted strings, delimited by triple single- or triple double-quotes, are supported. Indented string lines are stripped of leading whitespace common to all non-blank lines: +Indented versions of both single- and double-quoted strings, delimited by triple single- or triple double-quotes, are supported. Indented string lines are stripped of a leading line break, and leading whitespace common to all non-blank lines: ```just # this string will evaluate to `foo\nbar\n` @@ -1044,7 +1044,7 @@ x := ''' bar ''' -# this string will evaluate to `abc\n wuv\nbar\n` +# this string will evaluate to `abc\n wuv\nxyz\n` y := """ abc wuv