Skip to content

Commit ea9798c

Browse files
committed
Fix javadoc warnings
1 parent 86bdf97 commit ea9798c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/main/java/com/sendgrid/SendGrid.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ public class SendGrid {
5656
/**
5757
* Constructor for using a username and password
5858
*
59-
* @param username
60-
* @param password
59+
* @param username SendGrid username
60+
* @param password SendGrid password
6161
*/
6262
public SendGrid(String username, String password) {
6363
this.username = username;
@@ -70,7 +70,7 @@ public SendGrid(String username, String password) {
7070
/**
7171
* Constructor for using an API key
7272
*
73-
* @param apiKey
73+
* @param apiKey SendGrid api key
7474
*/
7575
public SendGrid(String apiKey) {
7676
this.password = apiKey;
@@ -425,7 +425,8 @@ public int getSendAt() {
425425

426426
/**
427427
* Convenience method to set the template
428-
* @param templateId
428+
* @param templateId The ID string of your template
429+
* @return this
429430
*/
430431
public Email setTemplateId(String templateId) {
431432
this.getSMTPAPI().addFilter("templates", "enable", 1);

0 commit comments

Comments
 (0)