1
0
mirror of https://codeberg.org/nobody/LocalCDN.git synced 2025-06-05 21:49:31 +02:00

Fix comment to reflect reality

This commit is contained in:
Calum McConnell
2021-04-27 23:30:25 -04:00
parent 1b8443412a
commit 92e8208dd2
2 changed files with 3 additions and 3 deletions

View File

@ -227,8 +227,8 @@ helpers.formatFilename = function (targetPath) {
helpers.compareVersion = function (v1, v2) {
/**
* compareVersion( '1.5.7' , '1.5.8' ) is TRUE
* compareVersion( '1.5.8' , '1.5.7' ) is FALSE
* compareVersion( '1.5.7' , '1.5.8' ) is FALSE
* compareVersion( '1.5.8' , '1.5.7' ) is TRUE
* compareVersion( '1.5.7' , '1.5.7' ) is TRUE
*/
v1 = v1.split('.');