Skip to content

Commit

Permalink
Minor comment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrzealot committed Dec 3, 2022
1 parent cf9007a commit 1da986e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/ergogen.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ const process = async (raw, debug=false, logger=()=>{}) => {
let empty = true
let [config, format] = io.interpret(raw, logger)
let suffix = format
// KLE conversion warrants automaticly engaging debug mode
// as, usually, we're only interested in the points anyway
if (format == 'KLE') {
suffix = `${format} (Auto-debug)`
debug = true
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ for (const unit of glob.sync(path.join(__dirname, 'unit', '*.js'))) {

// Integration tests
// the --what switch supports categories (like `points` and `outlines`)
// as well as individual tests using slash-notation (like `points/000`)
// as well as individual tests using slash-notation (like `points/default`)
// the --dump switch can output the new results, overriding the old reference

const cap = s => s.charAt(0).toUpperCase() + s.slice(1)
Expand Down

0 comments on commit 1da986e

Please sign in to comment.