@@ -33,8 +33,8 @@ public static class Builder {
3333 /**
3434 * Add a string custom input.
3535 *
36- * @param key The key for the custom input as defined on your account
37- * portal.
36+ * @param key The key for the custom input as defined on your account
37+ * portal.
3838 * @param value The custom input value. Must be less than 256 characters
3939 * and must not contain new lines.
4040 * @return The builder object.
@@ -44,17 +44,17 @@ public Builder put(String key, String value) {
4444 validateKey (key );
4545 if (value .length () > 255 || value .contains ("\n " ))
4646 throw new IllegalArgumentException ("The custom input string " +
47- value + " is invalid. The string be less than" +
48- "256 characters and the string must not contain a newline." );
47+ value + " is invalid. The string be less than" +
48+ "256 characters and the string must not contain a newline." );
4949 inputs .put (key , value );
5050 return this ;
5151 }
5252
5353 /**
5454 * Add a numeric custom input.
5555 *
56- * @param key The key for the custom input as defined on your account
57- * portal.
56+ * @param key The key for the custom input as defined on your account
57+ * portal.
5858 * @param value The custom input value. Must be between -2^53 and 2^53,
5959 * exclusive.
6060 * @return The builder object.
@@ -75,8 +75,8 @@ public Builder put(String key, Number value) {
7575 /**
7676 * Add a boolean custom input.
7777 *
78- * @param key The key for the custom input as defined on your account
79- * portal.
78+ * @param key The key for the custom input as defined on your account
79+ * portal.
8080 * @param value The custom input value.
8181 * @return The builder object.
8282 * @throws IllegalArgumentException when the key or value are invalid.
0 commit comments