diff options
author | BobMcLaren <bobmclaren@fssi-ca.com> | 2012-05-31 22:29:21 -0400 |
---|---|---|
committer | BobMcLaren <bobmclaren@fssi-ca.com> | 2012-05-31 22:29:21 -0400 |
commit | bd9e8739bf7ec7ec41c3853d42894bb8b9494ded (patch) | |
tree | 7c5edbacba86ca0dc61e8b38d59be32d9d8f9e8a /SendGrid/SendGridMail/Header.cs | |
parent | 1dc99b4e6cb840d19402d0664827dcb5131d1fc8 (diff) | |
download | sendgrid-csharp-bd9e8739bf7ec7ec41c3853d42894bb8b9494ded.zip sendgrid-csharp-bd9e8739bf7ec7ec41c3853d42894bb8b9494ded.tar.gz sendgrid-csharp-bd9e8739bf7ec7ec41c3853d42894bb8b9494ded.tar.bz2 |
Minor change to make variable names consistent
Diffstat (limited to 'SendGrid/SendGridMail/Header.cs')
-rwxr-xr-x | SendGrid/SendGridMail/Header.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/SendGrid/SendGridMail/Header.cs b/SendGrid/SendGridMail/Header.cs index 127b05a..6b92a07 100755 --- a/SendGrid/SendGridMail/Header.cs +++ b/SendGrid/SendGridMail/Header.cs @@ -21,10 +21,9 @@ namespace SendGridMail _settings.AddArray(keys, substitutions);
}
-
- public void AddTo(IEnumerable<string> recipients)
+ public void AddTo(IEnumerable<string> addresses)
{
- _settings.AddArray(new List<string> { "to" }, recipients);
+ _settings.AddArray(new List<string> { "to" }, addresses);
}
public void AddUniqueIdentifier(IDictionary<string, string> identifiers)
|