summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHeitor Tashiro Sergent <heitortsergent@gmail.com>2014-12-02 15:53:09 -0200
committerHeitor Tashiro Sergent <heitortsergent@gmail.com>2014-12-02 15:53:09 -0200
commitc82f4a745ee66747699adba6ec1c92c5c85380d8 (patch)
treeeca81bd0988576723d92135e11c079eb947d576d
parent535cdbad9087867874475e9c6966f41362a37245 (diff)
downloadsendgrid-nodejs-c82f4a745ee66747699adba6ec1c92c5c85380d8.zip
sendgrid-nodejs-c82f4a745ee66747699adba6ec1c92c5c85380d8.tar.gz
sendgrid-nodejs-c82f4a745ee66747699adba6ec1c92c5c85380d8.tar.bz2
Fix setFilters example in README
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3e5615a..943a0a5 100644
--- a/README.md
+++ b/README.md
@@ -301,9 +301,9 @@ You can set a filter using an object literal.
var email = new sendgrid.Email();
email.setFilters({
'footer': {
- 'setting': {
+ 'settings': {
'enable': 1,
- 'text/plain': 'You can haz footers!'
+ 'text/html': '<strong>You can haz footers!</strong>'
}
}
});