From e182d6006c137e6a65ea2bc7d59f3a602a3193ad Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Thu, 7 Apr 2022 16:20:51 -0400 Subject: [PATCH] Spelling (#6) * spelling: character * spelling: discussions * spelling: separator --- SUPPORT.md | 2 +- docs/expression-grammar.grammar | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/SUPPORT.md b/SUPPORT.md index 0ecaff2fc..ca2983fba 100644 --- a/SUPPORT.md +++ b/SUPPORT.md @@ -6,7 +6,7 @@ This project uses GitHub Issues to track bugs and feature requests. Please searc issues before filing new issues to avoid duplicates. For new issues, file your bug or feature request as a new Issue. -For help and questions about using this project, please use the Discussios section of this repo. +For help and questions about using this project, please use the Discussions section of this repo. ## Microsoft Support Policy diff --git a/docs/expression-grammar.grammar b/docs/expression-grammar.grammar index 922f4467e..3d1350f21 100644 --- a/docs/expression-grammar.grammar +++ b/docs/expression-grammar.grammar @@ -17,7 +17,7 @@ ExpressionElement : Comment Token -// Whitepsace +// Whitespace Whitespace : > any Unicode Space separator (class Zs) @@ -26,7 +26,7 @@ Whitespace : > Horizontal tab character (U+0009) > Line feed character (U+000A) > Vertical tab character (U+000B) - > Form feed chracter (U+000C) + > Form feed character (U+000C) > Carriage return character (U+000D) > Next line character (U+0085) @@ -176,8 +176,8 @@ ContextKeyword : // Operators DecimalSeparator : - > `.` (dot) for language that use a dot as the seperator for decimal numbers, for example `1.23` - > `,` (comma) for languages that use a comma as the seperator for decimal numbers, for example `1,23` + > `.` (dot) for language that use a dot as the separator for decimal numbers, for example `1.23` + > `,` (comma) for languages that use a comma as the separator for decimal numbers, for example `1,23` ListSeparator : > `,` (comma) if DecimalSeparator is `.` (dot)