From 0e7fe4d35bafc8a73b68835c65bebf766d4f51da Mon Sep 17 00:00:00 2001 From: Simran Date: Thu, 24 Sep 2020 02:20:57 +0200 Subject: [PATCH] Add missing backticks around (#3840) --- docs/syntax.md | 4 ++-- 1 file 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 `!` in them: When a token in the assembly program is a `!`, 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 is emitted +each subsequent token not recognized as an OpCode or a `` is emitted into the binary output without any checking; when a recognizable OpCode or a - is eventually encountered, it begins a new instruction and parsing +`` 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.)