aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-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