From a7837898c7f4a3e6fc7d2129d7b25e0581410647 Mon Sep 17 00:00:00 2001 From: Kirill Maltsev Date: Sat, 5 Apr 2014 17:57:26 +0200 Subject: [PATCH] Correct mistake in the readme I've corrected the wrong variable name. --- 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); }); }