diff --git a/.vscode/launch.json b/.vscode/launch.json index 9cfcde95..f94732cc 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,20 +4,27 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Chrome Vite Debug", + "url": "http://localhost:5173/", + "webRoot": "${workspaceRoot}/src", + //"sourceMaps": true, + }, { "type": "msedge", - "name": "Edge Vite Debug", "request": "launch", + "name": "Edge Vite Debug", "url": "http://localhost:5173/", "webRoot": "${workspaceFolder}/src" }, { - "type": "chrome", + "type": "firefox", "request": "launch", - "name": "Chrome Vite Debug", + "name": "Firefox Vite Debug", "url": "http://localhost:5173/", - "webRoot": "${workspaceRoot}/src", - //"sourceMaps": true, - } + "webRoot": "${workspaceFolder}/src" + }, ] } \ No newline at end of file diff --git a/src/AEG-IO.ts b/src/AEG-IO.ts index aa605fb2..e79e9322 100644 --- a/src/AEG-IO.ts +++ b/src/AEG-IO.ts @@ -153,7 +153,7 @@ function toCut(cutData: cutObj): CutNode { } /** - * Parses the incoming AtomObject and returns and equivalent AtomNode. + * Parses the incoming AtomObject and returns an equivalent AtomNode. * * @param atomData Incoming AtomObject. * @returns AtomNode equivalent of atomData. @@ -168,7 +168,7 @@ function toAtom(atomData: atomObj): AtomNode { /** * Creates and returns the json string of the given AEG Tree object. - * Uses tab characters as delimiters. + * Uses tab characters as delimiters. * * @param treeData An AEG Tree object. * @returns json string of treeData.