diff --git a/src/main/java/com/mountainminds/three4j/Nonce.java b/src/main/java/com/mountainminds/three4j/Nonce.java index fb9966d..febc7ce 100644 --- a/src/main/java/com/mountainminds/three4j/Nonce.java +++ b/src/main/java/com/mountainminds/three4j/Nonce.java @@ -31,7 +31,7 @@ private Nonce(byte[] value) { /** * @param value 24 bytes - * @return new message id + * @return new nonce */ public static Nonce of(byte[] value) { return new Nonce(value); @@ -39,7 +39,7 @@ public static Nonce of(byte[] value) { /** * @param hexvalue 48 character hex string - * @return new message id + * @return new nonce */ public static Nonce of(String hexvalue) { return of(fromHex(hexvalue));