From 9d6311f4648c87765694208f0a967a05aafb6ed4 Mon Sep 17 00:00:00 2001 From: Miguel Andrade Date: Mon, 4 Jun 2018 14:54:04 +0100 Subject: [PATCH] Update 0000-deprecate-send-action.md --- text/0000-deprecate-send-action.md | 6 ++++++ 1 file changed, 6 insertions(+) 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. } } });