diff --git a/docs/v1.x-migration.md b/docs/v1.x-migration.md index 3bbe31a7..ca1a1efb 100644 --- a/docs/v1.x-migration.md +++ b/docs/v1.x-migration.md @@ -134,15 +134,15 @@ m.mount(document.body, { m.mount(document.body, { oninit : function(vnode) { - var ctrl = this; // this is bound to vnode.state by default + var state = this; // this is bound to vnode.state by default - ctrl.fooga = 1; + state.fooga = 1; }, view : function(vnode) { - var ctrl = this; // this is bound to vnode.state by default + var state = this; // this is bound to vnode.state by default - return m("p", ctrl.fooga); + return m("p", state.fooga); } }); ```