From 5d66a25b013877cee81670133f65610e8d853d4c Mon Sep 17 00:00:00 2001 From: Bobbi Webber-Manners Date: Sat, 5 May 2018 01:05:16 -0400 Subject: [PATCH] Formatting fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8c20956..1e30aef 100644 --- a/README.md +++ b/README.md @@ -303,11 +303,11 @@ The array `msg` will be initialized to the character values of the string litera Note that string literals may also be used to initialize `word` arrays: - word vals[10] = "ABCABCABC" + word vals[10] = "ABCABCABC" Since the Commodore VIC20 and C64 lack the `{` and `}` symbols, `[` and `]` are used in their place, for example - word commodore[10] = [10, 9, 8 ] + word commodore[10] = [10, 9, 8 ] #### Array Indexing