diff --git a/text/0632-deprecate-string-based-actions.md b/text/0632-deprecate-string-based-actions.md index e89f02fe29..a2235ec94d 100644 --- a/text/0632-deprecate-string-based-actions.md +++ b/text/0632-deprecate-string-based-actions.md @@ -87,7 +87,7 @@ export default Component.extend({ this.actionName(); }, - action(function actionName() { + actionName: action(function() { // do something }) }); @@ -106,7 +106,7 @@ export class extends Component { } @action - function actionName() { + actionName() { // do something } }