Skip to content

Commit 979f2fc

Browse files
committed
Merge pull request #5 from jrowlingson/fix-example-doc
[DOC release] Fix example doc
2 parents 7dc4cf3 + cf07fa8 commit 979f2fc

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,13 @@ module.exports = function(environment) {
5555
"webhookURL": "<your-webhook-URI>",
5656
"channel": "#notifications",
5757
"username": "ember-cli-deploy",
58-
"didDeploy": function(context, slack) {
59-
return slack.notify({
60-
text: 'w00t I can haz custumizations!'
61-
});
62-
}
58+
"didDeploy": function(context) {
59+
return function(slack) {
60+
return slack.notify({
61+
text: 'w00t I can haz custumizations!'
62+
});
63+
};
64+
},
6365
},
6466
// ...
6567
},

0 commit comments

Comments
 (0)