From bc5f135a3d33a32c4fa0017e5ef1c884caf1ac8b Mon Sep 17 00:00:00 2001 From: AlexeiA Date: Thu, 10 Apr 2014 17:41:53 +0400 Subject: [PATCH] Update README.md typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d0ac8c..ab01e09 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ If your templates reside in individual files, you can load them asynchronously a ```js function loadUser() { $.get('template.mst', function(template) { - var html = Mustache.render(template, {name: "Luke"}); + var rendered = Mustache.render(template, {name: "Luke"}); $('#target').html(rendered); }); }