Index: src/AST/Stmt.hpp
===================================================================
--- src/AST/Stmt.hpp	(revision f6f7b52253f062a95819b4226c6f6f95b28a2ac9)
+++ src/AST/Stmt.hpp	(revision d96f7c4f1e2b7dfb521e83969e9704b7e12505da)
@@ -9,7 +9,7 @@
 // Author           : Aaron B. Moss
 // Created On       : Wed May  8 13:00:00 2019
-// Last Modified By : Andrew Beach
-// Last Modified On : Wed Apr  5 10:34:00 2023
-// Update Count     : 37
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Fri Jan 17 14:18:56 2025
+// Update Count     : 38
 //
 
@@ -280,5 +280,5 @@
 };
 
-// Branch control flow statement: goto ... or break or continue or fallthru
+// Branch control flow statement: goto ... or break or continue or fallthrough
 class BranchStmt final : public Stmt {
   public:
Index: src/CodeGen/CodeGenerator.cpp
===================================================================
--- src/CodeGen/CodeGenerator.cpp	(revision f6f7b52253f062a95819b4226c6f6f95b28a2ac9)
+++ src/CodeGen/CodeGenerator.cpp	(revision d96f7c4f1e2b7dfb521e83969e9704b7e12505da)
@@ -9,7 +9,7 @@
 // Author           : Andrew Beach
 // Created On       : Tue Oct 17 15:54:00 2023
-// Last Modified By : Andrew Beach
-// Last Modified On : Wed Oct 25 18:28:00 2023
-// Update Count     : 0
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Fri Jan 17 14:19:22 2025
+// Update Count     : 1
 //
 
@@ -1092,11 +1092,11 @@
 	case ast::BranchStmt::FallThrough:
 	case ast::BranchStmt::FallThroughDefault:
-		assertf( !options.genC, "fallthru should not reach code generation." );
-		output << "fallthru";
+		assertf( !options.genC, "fallthrough should not reach code generation." );
+		output << "fallthrough";
 		break;
 	default:
 		assertf( false, "Bad BranchStmt value." );
 	}
-	// Print branch target for labelled break/continue/fallthru in debug mode.
+	// Print branch target for labelled break/continue/fallthrough in debug mode.
 	if ( !options.genC && stmt->kind != ast::BranchStmt::Goto ) {
 		if ( !stmt->target.empty() ) {
Index: src/Parser/lex.ll
===================================================================
--- src/Parser/lex.ll	(revision f6f7b52253f062a95819b4226c6f6f95b28a2ac9)
+++ src/Parser/lex.ll	(revision d96f7c4f1e2b7dfb521e83969e9704b7e12505da)
@@ -10,6 +10,6 @@
  * Created On       : Sat Sep 22 08:58:10 2001
  * Last Modified By : Peter A. Buhr
- * Last Modified On : Sun Dec 15 17:23:46 2024
- * Update Count     : 877
+ * Last Modified On : Fri Jan 17 14:36:16 2025
+ * Update Count     : 878
  */
 
@@ -273,5 +273,4 @@
 extern			{ KEYWORD_RETURN(EXTERN); }
 fallthrough		{ KEYWORD_RETURN(FALLTHROUGH); }		// CFA
-fallthru		{ KEYWORD_RETURN(FALLTHRU); }			// CFA
 finally			{ QKEYWORD_RETURN(FINALLY); }			// CFA
 fixup			{ QKEYWORD_RETURN(FIXUP); }				// CFA
Index: src/Parser/parser.yy
===================================================================
--- src/Parser/parser.yy	(revision f6f7b52253f062a95819b4226c6f6f95b28a2ac9)
+++ src/Parser/parser.yy	(revision d96f7c4f1e2b7dfb521e83969e9704b7e12505da)
@@ -10,6 +10,6 @@
 // Created On       : Sat Sep  1 20:22:55 2001
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sun Dec 15 21:30:38 2024
-// Update Count     : 6933
+// Last Modified On : Fri Jan 17 14:35:08 2025
+// Update Count     : 6935
 //
 
@@ -377,5 +377,5 @@
 %token ATTRIBUTE EXTENSION								// GCC
 %token IF ELSE SWITCH CASE DEFAULT DO WHILE FOR BREAK CONTINUE GOTO RETURN
-%token CHOOSE FALLTHRU FALLTHROUGH WITH WHEN WAITFOR WAITUNTIL // CFA
+%token CHOOSE FALLTHROUGH WITH WHEN WAITFOR WAITUNTIL	// CFA
 %token CORUN COFOR
 %token DISABLE ENABLE TRY THROW THROWRESUME AT			// CFA
@@ -1680,10 +1680,10 @@
 		// whereas normal operator precedence yields goto (*i)+3;
 		{ $$ = new StatementNode( build_computedgoto( $3 ) ); }
-		// A semantic check is required to ensure fallthru appears only in the body of a choose statement.
-	| fall_through_name ';'								// CFA
+		// A semantic check is required to ensure fallthrough appears only in the body of a choose statement.
+	| FALLTHROUGH ';'									// CFA
 		{ $$ = new StatementNode( build_branch( yylloc, ast::BranchStmt::FallThrough ) ); }
-	| fall_through_name identifier_or_type_name ';'		// CFA
+	| FALLTHROUGH identifier_or_type_name ';'			// CFA
 		{ $$ = new StatementNode( build_branch( yylloc, $2, ast::BranchStmt::FallThrough ) ); }
-	| fall_through_name DEFAULT ';'						// CFA
+	| FALLTHROUGH DEFAULT ';'							// CFA
 		{ $$ = new StatementNode( build_branch( yylloc, ast::BranchStmt::FallThroughDefault ) ); }
 	| CONTINUE ';'
@@ -1723,9 +1723,4 @@
 	| THROWRESUME assignment_expression_opt AT assignment_expression ';' // handles reresume
 		{ $$ = new StatementNode( build_resume_at( $2, $4 ) ); }
-	;
-
-fall_through_name:										// CFA
-	FALLTHRU
-	| FALLTHROUGH
 	;
 
