Skip to content

Commit

Permalink
rename CSEP machine to CSET machine
Browse files Browse the repository at this point in the history
  • Loading branch information
s-kybound committed Nov 4, 2024
1 parent 62ffc40 commit 908574c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/transpiler/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export function schemeParse(

finalAST = redefinedAST;
} else {
// Then we prepare the AST for evaluation within the CSEP machine.
// Then we prepare the AST for evaluation within the CSET machine.
// Take the imports from the AST
const macroASTImports: Expression[] = firstAST.filter(
e => e instanceof Atomic.Import
Expand Down
2 changes: 1 addition & 1 deletion src/transpiler/parser/scheme-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ export class SchemeParser implements Parser {
if (group.length() === 0) {
if (this.chapter >= MACRO_CHAPTER) {
// disable any verification for the empty group
// the CSEP machine will verify its validity
// the CSET machine will verify its validity
return new Atomic.Nil(group.location);
}
throw new ParserError.ExpectedFormError(
Expand Down

0 comments on commit 908574c

Please sign in to comment.