Skip to content

Commit 908574c

Browse files
committed
rename CSEP machine to CSET machine
1 parent 62ffc40 commit 908574c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/transpiler/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export function schemeParse(
7979

8080
finalAST = redefinedAST;
8181
} else {
82-
// Then we prepare the AST for evaluation within the CSEP machine.
82+
// Then we prepare the AST for evaluation within the CSET machine.
8383
// Take the imports from the AST
8484
const macroASTImports: Expression[] = firstAST.filter(
8585
e => e instanceof Atomic.Import

src/transpiler/parser/scheme-parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ export class SchemeParser implements Parser {
434434
if (group.length() === 0) {
435435
if (this.chapter >= MACRO_CHAPTER) {
436436
// disable any verification for the empty group
437-
// the CSEP machine will verify its validity
437+
// the CSET machine will verify its validity
438438
return new Atomic.Nil(group.location);
439439
}
440440
throw new ParserError.ExpectedFormError(

0 commit comments

Comments
 (0)