Skip to content

Commit

Permalink
Fix markup for backtick.
Browse files Browse the repository at this point in the history
This markup is the only way to create a code-voice backtick in markdown,
even though it creates a warning due to DocC's meaning of double
backticks to delimit code voice.  See also that known issue:

    swiftlang#71
    swiftlang/swift-markdown#93
  • Loading branch information
amartini51 committed Dec 5, 2022
1 parent 46dbe1e commit f3081bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/TSPL/TSPL.docc/ReferenceManual/LexicalStructure.md
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ The following tokens are reserved as punctuation
and can't be used as custom operators:
`(`, `)`, `{`, `}`, `[`, `]`,
`.`, `,`, `:`, `;`, `=`, `@`, `#`,
`&` (as a prefix operator), `->`, `\\``,
`&` (as a prefix operator), `->`, `` ` ``,
`?`, and `!` (as a postfix operator).

## Literals
Expand Down

0 comments on commit f3081bc

Please sign in to comment.