aboutsummaryrefslogtreecommitdiffstats
path: root/source/core.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-11-24 21:46:47 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-11-24 21:46:47 -0500
commitbbff2c86a173d7ff65ef7a378c8de7de62af9f9b (patch)
treefd809b1fd73e8403bfe380a565ea6e10af679c42 /source/core.hpp
parent649785d46603182132209b64791f6c996497110e (diff)
fix word parsing
Diffstat (limited to 'source/core.hpp')
-rw-r--r--source/core.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/core.hpp b/source/core.hpp
index 914c39b..f5149cf 100644
--- a/source/core.hpp
+++ b/source/core.hpp
@@ -44,8 +44,8 @@ int key(); /** Gets the next key available from the source buffer. */
Cell *comma(Cell n); /** Stores `n` to HERE++, returns `n`'s storage. */
Addr aligned(Addr addr); /** Aligns the given address and returns it. */
-void align(); /** Aligns HERE to the next Cell boundary. */
-void wordword(); /** Definition of WORD. */
+void align(); /** Aligns HERE to the next Cell boundary. */
+void word(); /** Definition of WORD. */
void colon(); /** Begins definition of a new word. */
void semic(); /** Ends the current word definition which becomes new LATEST. */
void tick(); /** Gets the execution token for the source buffer's next word. */