Skip to content

Commit 285e7fc

Browse files
author
Colin Robertson
authored
Merge pull request #3751 from Johnsonsky/patch-1
Missing characters in /docs/c-language/lexical-grammar.md
2 parents 3b1ef31 + 43338fa commit 285e7fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/c-language/lexical-grammar.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "C lexical grammar"
33
description: "Describes the standard C language lexical grammar implemented by the Microsoft C/C++ compiler."
4-
ms.date: 10/30/2020
4+
ms.date: 03/07/2022
55
helpviewer_keywords: ["lexical grammar"]
66
ms.assetid: cb5847fa-aef3-47f5-8825-97c2bf4a3d87
77
---
@@ -114,7 +114,7 @@ For a list of additional Microsoft-specific keywords, see [C keywords](./c-keywo
114114
 **`0`** **`1`** **`2`** **`3`** **`4`** **`5`** **`6`** **`7`**
115115

116116
*`hexadecimal-digit`*: one of\
117-
 **`0`** **`1`** **`2`** **`3`** **`4`** **`5`** **`6`** **`7`** **`8`**\
117+
 **`0`** **`1`** **`2`** **`3`** **`4`** **`5`** **`6`** **`7`** **`8`** **`9`**\
118118
 **`a`** **`b`** **`c`** **`d`** **`e`** **`f`**\
119119
 **`A`** **`B`** **`C`** **`D`** **`E`** **`F`**
120120

@@ -212,7 +212,7 @@ For a list of additional Microsoft-specific keywords, see [C keywords](./c-keywo
212212
## <a name="string-literals"></a> String literals
213213

214214
*`string-literal`*:\
215-
&emsp;*`encoding-prefix`* *`s-char-sequence`*<sub>opt</sub> **`"`**
215+
&emsp;*`encoding-prefix`* **`"`** *`s-char-sequence`*<sub>opt</sub> **`"`**
216216

217217
*`encoding-prefix`*:\
218218
&emsp;**`u8`**\

0 commit comments

Comments
 (0)