Skip to content

Commit

Permalink
Firefox debug button and typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanR712 committed May 6, 2024
1 parent 851945a commit d2b0aa4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
19 changes: 13 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
]
}
4 changes: 2 additions & 2 deletions src/AEG-IO.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down

0 comments on commit d2b0aa4

Please sign in to comment.