From 739f841f1fb1c7c3df8090f371f3967a15ae58e0 Mon Sep 17 00:00:00 2001 From: Stefan Date: Sun, 15 Dec 2024 00:49:40 +0100 Subject: [PATCH] Fixed typo --- docs/syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/syntax.md b/docs/syntax.md index 582bc0ccf..5c74ffa76 100644 --- a/docs/syntax.md +++ b/docs/syntax.md @@ -169,6 +169,6 @@ Note that the rules for assembly change dramatically from standard ZX BASIC, and * Comments are begun with a semicolon (`;`) instead of an apostrophe (`'`). * The assembler supports `DEFB` to define comma separated bytes, or a quote delimited string. * The assembler supports `DEFS n,B` to shortcut a series of n bytes of value B. -* The assembler supports it's own set of #directives, including [incbin](asm/incbin.md) +* The assembler supports its own set of #directives, including [incbin](asm/incbin.md) A novice user of assembly would be well advised to examine code held in the [library](library.md) for examples and usage.