diff options
author | Kyle Partridge <partkyle@gmail.com> | 2012-02-10 14:29:45 -0800 |
---|---|---|
committer | Kyle Partridge <partkyle@gmail.com> | 2012-02-10 14:29:45 -0800 |
commit | 8fa4443280a62c1b342d7609b58c66862b4e22eb (patch) | |
tree | 0b918e22953f59aaca4ece038ace2d16e0a80e9f /lib/sendgrid.js | |
parent | 0b023fdc1fbd18199c80a4c3b85229fd771b73e4 (diff) | |
download | sendgrid-nodejs-8fa4443280a62c1b342d7609b58c66862b4e22eb.zip sendgrid-nodejs-8fa4443280a62c1b342d7609b58c66862b4e22eb.tar.gz sendgrid-nodejs-8fa4443280a62c1b342d7609b58c66862b4e22eb.tar.bz2 |
format docblock
Diffstat (limited to 'lib/sendgrid.js')
-rw-r--r-- | lib/sendgrid.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sendgrid.js b/lib/sendgrid.js index 1c37993..86145c9 100644 --- a/lib/sendgrid.js +++ b/lib/sendgrid.js @@ -24,9 +24,9 @@ function SendGrid(api_user, api_key) { * Sends an email via REST and returns true if the * message was sent successfully. * - * @param {Email|Object} email An email object or a hash that has - * the values for the email to be sent. - * @param {Function} callback A function to call when the processing is done. + * @param {Email|Object} email An email object or a hash that has + * the values for the email to be sent. + * @param {Function} callback A function to call when the processing is done. */ SendGrid.prototype.send = function(email, callback) { var self = this; |