Skip to content

Commit ac9b357

Browse files
authored
fix: typo in compareBuild debug message (#682)
Correcting the debug message in `compareBuild`
1 parent 377f709 commit ac9b357

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

classes/semver.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class SemVer {
158158
do {
159159
const a = this.build[i]
160160
const b = other.build[i]
161-
debug('prerelease compare', i, a, b)
161+
debug('build compare', i, a, b)
162162
if (a === undefined && b === undefined) {
163163
return 0
164164
} else if (b === undefined) {

0 commit comments

Comments
 (0)