doc(concepts): Fix typo in $render() function

This commit is contained in:
János Rusiczki
2012-12-07 11:01:59 +02:00
committed by Pete Bacon Darwin
parent 53fdcafa44
commit bd62790080

View File

@@ -310,7 +310,7 @@ in HTML.
});
// model -> view
ctrl.render = function(value) {
ctrl.$render = function(value) {
elm.html(value);
};