Skip to content

Commit

Permalink
fix: typo in compareBuild debug message (#682)
Browse files Browse the repository at this point in the history
Correcting the debug message in `compareBuild`
  • Loading branch information
mbtools committed Feb 7, 2024
1 parent 377f709 commit ac9b357
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/semver.js
Expand Up @@ -158,7 +158,7 @@ class SemVer {
do {
const a = this.build[i]
const b = other.build[i]
debug('prerelease compare', i, a, b)
debug('build compare', i, a, b)
if (a === undefined && b === undefined) {
return 0
} else if (b === undefined) {
Expand Down

0 comments on commit ac9b357

Please sign in to comment.