浏览代码

More spelling mistake fixes

tags/0.5.0-vsc
thegrandpoobah 16 年前
父节点
当前提交
336d21a1a4
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      mustache.js

+ 2
- 2
mustache.js 查看文件

@@ -211,7 +211,7 @@ var Mustache = function() {
find: function(name, context) {
name = this.trim(name);

// Checks whether a value is thruthy or false or 0
// Checks whether a value is truthy or false or 0
function is_kinda_truthy(bool) {
return bool === false || bool === 0 || bool;
}
@@ -244,7 +244,7 @@ var Mustache = function() {
}
}
}
// silently ignore unkown variables
// silently ignore unknown variables
return "";
},



正在加载...
取消
保存