Explorar el Código

Large customary area was bugging out

tags/v0.7.0
Fen Dweller hace 8 años
padre
commit
0d33240964
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      units.js

+ 1
- 1
units.js Ver fichero

@@ -279,7 +279,7 @@ function customaryArea(m2, singular=false) {
let area = round(ft2,1);
return area + (singular || area == 1 ? " square foot" : " square feet");
} else {
let length = round(ft2 /5280 / 5280,1);
let area = round(ft2 / 5280 / 5280,1);
return area + (singular || area == 1 ? " square mile" : " square miles");
}
}


Cargando…
Cancelar
Guardar