Explorar el Código

Correct mistake in the readme

I've corrected the wrong variable name.
tags/v1.0.0
Kirill Maltsev hace 12 años
padre
commit
a7837898c7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      README.md

+ 1
- 1
README.md Ver fichero

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


Cargando…
Cancelar
Guardar