From 46c719b5538e8728f3f840b87064ddb04fa85517 Mon Sep 17 00:00:00 2001 From: Ben Culkin Date: Sat, 13 Mar 2021 10:15:01 -0500 Subject: Update documentation --- src/main/java/bjc/data/Lazy.java | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/main/java/bjc/data/Lazy.java') diff --git a/src/main/java/bjc/data/Lazy.java b/src/main/java/bjc/data/Lazy.java index 5fcd2ae..b237935 100644 --- a/src/main/java/bjc/data/Lazy.java +++ b/src/main/java/bjc/data/Lazy.java @@ -195,9 +195,10 @@ public class Lazy implements Holder { /** * Create a new lazy container with an already present value. - * - * @param val - * The value for the lazy container. + * + * @param The type of the contained value. + * + * @param val The value for the lazy container. * * @return A new lazy container holding that value. */ @@ -208,8 +209,9 @@ public class Lazy implements Holder { /** * Create a new lazy container with a suspended value. * - * @param supp - * The suspended value for the lazy container. + * @param The type of the contained value. + * + * @param supp The suspended value for the lazy container. * * @return A new lazy container that will un-suspend the value when necessary. */ -- cgit v1.2.3