瀏覽代碼

Large customary area was bugging out

tags/v0.7.0
Fen Dweller 8 年之前
父節點
當前提交
0d33240964
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      units.js

+ 1
- 1
units.js 查看文件

@@ -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");
}
}


Loading…
取消
儲存