From 00d120425d304cdf9bd795174657e47a3dae7030 Mon Sep 17 00:00:00 2001 From: Joan Josep Ordinas Rosa Date: Fri, 31 Jul 2020 19:28:57 +0200 Subject: [PATCH] Fixed wrong description of <# ... #> --- docs/content/content.md | 4 ++-- docs/content/structure.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/content.md b/docs/content/content.md index 7b996aa..e3243f7 100644 --- a/docs/content/content.md +++ b/docs/content/content.md @@ -155,7 +155,7 @@ Some fragments of text are skipped during macro expansion, like comments, continuation lines and arbitrary but delimited strings of characters: ``` -<# Block comments, removed, must end in newline (also removed) #> +<# Block comments, removed #> Continuation lines using an ampersand & just before the newline character ``` @@ -179,7 +179,7 @@ This table summarizes all the available skips: Delimiters Macro expansion Delimiters removed Content removed ------------- --------------- ------------------ --------------- `&\n`[^1] No Yes There is no content -`<#` `#>\n` No Yes Yes +`<#` `#>` No Yes Yes `'` `'`[^2] No Yes No `"` `"`[^3] Yes Yes No `` No No No diff --git a/docs/content/structure.md b/docs/content/structure.md index 977b0b5..deb387c 100644 --- a/docs/content/structure.md +++ b/docs/content/structure.md @@ -138,7 +138,7 @@ Some fragments of text are skipped during macro expansion, like comments, continuation lines and delimited strings of characters: ``` -<# Block comments, removed, must end in newline (also removed) #> +<# Block comments, removed #> Continuation lines using an ampersand & just before the newline character ```