From 336d21a1a4b256e6c326de36ecda1d3488a88167 Mon Sep 17 00:00:00 2001 From: thegrandpoobah Date: Tue, 15 Jun 2010 13:27:53 -0400 Subject: [PATCH] More spelling mistake fixes --- mustache.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mustache.js b/mustache.js index c9344dd..8481d38 100644 --- a/mustache.js +++ b/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 ""; },