Skip to content

Commit c94a16d

Browse files
committed
Fix javadoc error
1 parent a5a2c55 commit c94a16d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/src/main/java/com/joyent/http/signature/KeyFingerprinter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ private KeyFingerprinter() {
4646
* still the one used by Triton and Manta as the key id.
4747
*
4848
* @param keyPair The KeyPair to calculate the fingerprint of
49-
* @return The fingerprint (ex: {@code 9f:0b:50:ae:e3:da:f6:eb:b5:71:9a:69:ee:79:9e:c2})
49+
* @return The MD5 fingerprint (ex: {@code 9f:0b:50:ae:e3:da:f6:eb:b5:71:9a:69:ee:79:9e:c2})
5050
*/
5151
public static String md5Fingerprint(final KeyPair keyPair) {
5252
Objects.requireNonNull(keyPair);
@@ -70,7 +70,7 @@ public static String md5Fingerprint(final KeyPair keyPair) {
7070
* SHA256 of the serialized public key as a fingerprint.
7171
*
7272
* @param keyPair The KeyPair to calculate the fingerprint of
73-
* @return The fingerprint (ex: {@code: LP3pWCEhg6rdmE05GhUKbZ7uOZqsJd0sK0AR3sVoMq4})
73+
* @return The SHA fingerprint (ex: {@code LP3pWCEhg6rdmE05GhUKbZ7uOZqsJd0sK0AR3sVoMq4})
7474
*/
7575
public static String sha256Fingerprint(final KeyPair keyPair) {
7676
Objects.requireNonNull(keyPair);

0 commit comments

Comments
 (0)