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 f8b755982a
commit c52bfd37ee

View file

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