aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-04-14 11:13:18 +0200
committerMiquel Sabaté Solà <mssola@mssola.com>2026-04-14 11:13:18 +0200
commitde75053b3fe683f94efcda21decb5ebc1a8d769c (patch)
tree1dde5400781dcf8b3b079bf209ef08c543c38640
parent59deb67072f9769f9e4db35737de24d31ec24fd5 (diff)
downloadstyle.nes-de75053b3fe683f94efcda21decb5ebc1a8d769c.tar.gz
style.nes-de75053b3fe683f94efcda21decb5ebc1a8d769c.zip
Clarify the use of '@' in labels
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
-rw-r--r--README.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/README.md b/README.md
index e5c6ed3..be162bf 100644
--- a/README.md
+++ b/README.md
@@ -289,11 +289,10 @@ so that it follows somewhat different rules than the ones by its side.
## Use the `@` prefix for named labels which affect the control flow
Named labels which are part of the control flow are to use the `@` symbol as a
-prefix for their names. This is in accordance to the style used virtually
-everwhere, and it clearly denotes which labels are actually part of the control
-flow. Thus, labels which reference a piece of data should not be prefixed with
-`@`, but labels which are part of the flow of branching/jumping should be
-prefixed accordingly.
+prefix for their names. This clearly denotes which labels are actually part of
+the control flow. Thus, labels which reference a piece of data should not be
+prefixed with `@`, but labels which are part of the flow of branching/jumping
+should be prefixed accordingly.
``` assembly
;; bad