Skip to content

Commit 64f642c

Browse files
committed
fix spacing
1 parent ace54c7 commit 64f642c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

simpletoast.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@
208208
function buildVersion(major, minor = 0, patch = 0) {
209209
return {
210210
string: `${major}.${minor}${patch ? `.${patch}` : ''}`,
211-
number: major * 1000000000 + minor * 1000 + patch,
211+
number: major * 1000000000 + minor * 1000 + patch,
212212
};
213213
}
214214
})();

0 commit comments

Comments
 (0)