Skip to content

Commit

Permalink
Remove A and An from start of sigil definition sentences
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Aug 27, 2021
1 parent 973e2b9 commit aa6d3dc
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions spec/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -1632,21 +1632,21 @@ ERROR:

_Indicators_ are characters that have special semantics.

A ["**`-`**"] (**`#x2D`**, hyphen) denotes a [block sequence] entry.
["**`-`**"] (**`#x2D`**, hyphen) denotes a [block sequence] entry.

```
[#] c-sequence-entry ::= "-"
```


A ["**`?`**"] (**`#x3F`**, question mark) denotes a [mapping key].
["**`?`**"] (**`#x3F`**, question mark) denotes a [mapping key].

```
[#] c-mapping-key ::= "?"
```


A ["**`:`**"] (**`#x3A`**, colon) denotes a [mapping value].
["**`:`**"] (**`#x3A`**, colon) denotes a [mapping value].

```
[#] c-mapping-value ::= ":"
Expand Down Expand Up @@ -1680,35 +1680,35 @@ mapping:
* [c-mapping-value] <!-- : -->


A ["**`,`**"] (**`#x2C`**, comma) ends a [flow collection] entry.
["**`,`**"] (**`#x2C`**, comma) ends a [flow collection] entry.

```
[#] c-collect-entry ::= ","
```


A ["**`[`**"] (**`#x5B`**, left bracket) starts a [flow sequence].
["**`[`**"] (**`#x5B`**, left bracket) starts a [flow sequence].

```
[#] c-sequence-start ::= "["
```


A ["**`]`**"] (**`#x5D`**, right bracket) ends a [flow sequence].
["**`]`**"] (**`#x5D`**, right bracket) ends a [flow sequence].

```
[#] c-sequence-end ::= "]"
```


A ["**`{`**"] (**`#x7B`**, left brace) starts a [flow mapping].
["**`{`**"] (**`#x7B`**, left brace) starts a [flow mapping].

```
[#] c-mapping-start ::= "{"
```


A ["**`}`**"] (**`#x7D`**, right brace) ends a [flow mapping].
["**`}`**"] (**`#x7D`**, right brace) ends a [flow mapping].

```
[#] c-mapping-end ::= "}"
Expand All @@ -1734,8 +1734,8 @@ mapping: { sky: blue, sea: green }
* [c-collect-entry] <!-- , -->


An ["**`#`**"] (**`#x23`**, octothorpe, hash, sharp, pound, number sign)
denotes a [comment].
["**`#`**"] (**`#x23`**, octothorpe, hash, sharp, pound, number sign) denotes a
[comment].

```
[#] c-comment ::= "#"
Expand All @@ -1758,13 +1758,13 @@ denotes a [comment].
* [c-comment] <!-- # -->


An ["**`&`**"] (**`#x26`**, ampersand) denotes a [node’s anchor property].
["**`&`**"] (**`#x26`**, ampersand) denotes a [node’s anchor property].

```
[#] c-anchor ::= "&"
```

An ["**`*`**"] (**`#x2A`**, asterisk) denotes an [alias node].
["**`*`**"] (**`#x2A`**, asterisk) denotes an [alias node].


```
Expand Down Expand Up @@ -1801,14 +1801,14 @@ alias: *anchor
* [c-alias] <!-- * -->


A ["**`|`**"] (**`7C`**, vertical bar) denotes a [literal block scalar].
["**`|`**"] (**`7C`**, vertical bar) denotes a [literal block scalar].

```
[#] c-literal ::= "|"
```


A ["**`>`**"] (**`#x3E`**, greater than) denotes a [folded block scalar].
["**`>`**"] (**`#x3E`**, greater than) denotes a [folded block scalar].

```
[#] c-folded ::= ">"
Expand All @@ -1835,16 +1835,16 @@ folded: >
* [c-literal] <!-- | -->
* [c-folded] <!-- > -->

An ["**`'`**"] (**`#x27`**, apostrophe, single quote) surrounds a
[single-quoted flow scalar].
["**`'`**"] (**`#x27`**, apostrophe, single quote) surrounds a [single-quoted
flow scalar].


```
[#] c-single-quote ::= "'"
```


A ["**`"`**"] (**`#x22`**, double quote) surrounds a [double-quoted flow
["**`"`**"] (**`#x22`**, double quote) surrounds a [double-quoted flow
scalar].

```
Expand All @@ -1869,7 +1869,7 @@ double: "text"
* [c-double-quote] <!-- 2:9 2:14 -->


A ["**`%`**"] (**`#x25`**, percent) denotes a [directive] line.
["**`%`**"] (**`#x25`**, percent) denotes a [directive] line.

```
[#] c-directive ::= "%"
Expand Down

0 comments on commit aa6d3dc

Please sign in to comment.