diff --git a/src/3x5.ts b/src/3x5.ts index ed24524..7619ddb 100644 --- a/src/3x5.ts +++ b/src/3x5.ts @@ -1,4 +1,4 @@ -import { parse } from "./notcl"; +import { parse } from "./parser"; /** * Basic unit of information, also an "actor" in the programming system diff --git a/src/notcl.test.ts b/src/parser.test.ts similarity index 99% rename from src/notcl.test.ts rename to src/parser.test.ts index 3134adf..de9d893 100644 --- a/src/notcl.test.ts +++ b/src/parser.test.ts @@ -1,4 +1,4 @@ -import { parse } from "./notcl"; +import { parse } from "./parser"; describe("Parsing Notcl", () => { describe("Commands", () => { diff --git a/src/notcl.ts b/src/parser.ts similarity index 100% rename from src/notcl.ts rename to src/parser.ts