From e706cc24f057fe81beef207254b9d77fff21b644 Mon Sep 17 00:00:00 2001 From: Matt Keeter Date: Sun, 6 Oct 2019 17:00:53 -0400 Subject: [PATCH] Fix typo in docs --- doc/langref.html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/langref.html.in b/doc/langref.html.in index a28e0f5dfa..2a323d5539 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -10062,7 +10062,7 @@ fn readU32Be() u32 {}
  • Ascii control characters, except for U+000a (LF): U+0000 - U+0009, U+000b - U+0001f, U+007f. (Note that Windows line endings (CRLF) are not allowed, and hard tabs are not allowed.)
  • Non-Ascii Unicode line endings: U+0085 (NEL), U+2028 (LS), U+2029 (PS).
  • -

    The codepoint U+000a (LF) (which is encoded as the single-byte value 0x0a) is the line terminator character. This character always terminates a line of zig source code (except possbly the last line of the file).

    +

    The codepoint U+000a (LF) (which is encoded as the single-byte value 0x0a) is the line terminator character. This character always terminates a line of zig source code (except possibly the last line of the file).

    For some discussion on the rationale behind these design decisions, see issue #663

    {#header_close#}