Skip to content

Commit

Permalink
Fix minor display typo in semver output
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanthorpe committed Aug 30, 2017
1 parent 34a5bf6 commit ff43b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code.gs
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ function SimplifiedSemanticVersion (versionNumber) {
SimplifiedSemanticVersion.prototype.toString = function () {
return this.numbers.join('.') +
(this.prerelease !== '' ? '-' + this.prerelease : '') +
(this.metadata !== '' ? '-' + this.metadata : '');
(this.metadata !== '' ? '+' + this.metadata : '');
};

/*
Expand Down

0 comments on commit ff43b81

Please sign in to comment.