From cbf8e6f40e8a47993244a7648917b01d7c51fde1 Mon Sep 17 00:00:00 2001 From: "Marc R. Hoffmann" Date: Sat, 2 Nov 2024 20:17:02 +0100 Subject: [PATCH] Fix Javadoc --- src/main/java/com/mountainminds/three4j/Nonce.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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));