summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2021-11-23 20:18:08 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2021-11-23 20:18:08 -0500
commitab0f9c287a45d1986985545d7ec6a2cd862e26fc (patch)
tree8063a15ad7082b953e47d2d00afd2679f9a8b470 /docs
parent6834c7a9a149aaadccc7d41bc93e5440d84d8b66 (diff)
Use compound assignment operators
Diffstat (limited to 'docs')
-rw-r--r--docs/design_flaws.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/design_flaws.md b/docs/design_flaws.md
index c6236338f..70f441ff2 100644
--- a/docs/design_flaws.md
+++ b/docs/design_flaws.md
@@ -727,7 +727,7 @@ sine_table: MACRO
x = 0
rept \1
dw (sin(x) + (sin(x) & $ff)) >> 8 ; round up
-x = x + DIV(32768, \1) ; a circle has 65536 "degrees"
+x += DIV(32768, \1) ; a circle has 65536 "degrees"
endr
ENDM
```