Skip to content

Commit 5c80c85

Browse files
authored
Fix Javadoc (#45)
1 parent 9c95c61 commit 5c80c85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/mountainminds/three4j/Nonce.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ private Nonce(byte[] value) {
3131

3232
/**
3333
* @param value 24 bytes
34-
* @return new message id
34+
* @return new nonce
3535
*/
3636
public static Nonce of(byte[] value) {
3737
return new Nonce(value);
3838
}
3939

4040
/**
4141
* @param hexvalue 48 character hex string
42-
* @return new message id
42+
* @return new nonce
4343
*/
4444
public static Nonce of(String hexvalue) {
4545
return of(fromHex(hexvalue));

0 commit comments

Comments
 (0)