Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimran <Simran-B@users.noreply.github.com>2020-09-24 03:20:57 +0300
committerGitHub <noreply@github.com>2020-09-24 03:20:57 +0300
commit0e7fe4d35bafc8a73b68835c65bebf766d4f51da (patch)
tree626fe7e0769f726066e8395ef07dd9c6b9fad2b4 /docs
parentd1bb98fd487d3f2a12aa67c40536e3f0489ba349 (diff)
Add missing backticks around <result-id> (#3840)
Diffstat (limited to 'docs')
-rw-r--r--docs/syntax.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/syntax.md b/docs/syntax.md
index be3a5d5ad..c135d0107 100644
--- a/docs/syntax.md
+++ b/docs/syntax.md
@@ -166,9 +166,9 @@ with `!<integer>` in them:
When a token in the assembly program is a `!<integer>`, that integer value is
emitted into the binary output, and parsing proceeds differently than before:
-each subsequent token not recognized as an OpCode or a <result-id> is emitted
+each subsequent token not recognized as an OpCode or a `<result-id>` is emitted
into the binary output without any checking; when a recognizable OpCode or a
-<result-id> is eventually encountered, it begins a new instruction and parsing
+`<result-id>` is eventually encountered, it begins a new instruction and parsing
returns to normal. (If a subsequent OpCode is never found, then this alternate
parsing mode handles all the remaining tokens in the program.)