diff --git a/text/0000-deprecate-send-action.md b/text/0000-deprecate-send-action.md index af49799a3b..414a1b05cf 100644 --- a/text/0000-deprecate-send-action.md +++ b/text/0000-deprecate-send-action.md @@ -94,6 +94,12 @@ export default Component.extend({ // if (this.salute) { // this.salute() // } + // + // Alternatively, you can also define a noop salute function: + // salute() {} + // + // This allows you to remove the guard while provinding an obvious place to add + // docs for that action. } } });