diff options
| author | Ben Culkin <scorpress@gmail.com> | 2021-03-13 10:15:01 -0500 |
|---|---|---|
| committer | Ben Culkin <scorpress@gmail.com> | 2021-03-13 10:15:01 -0500 |
| commit | 46c719b5538e8728f3f840b87064ddb04fa85517 (patch) | |
| tree | 3a4ecbd9f74fb9207db98e549071d229b94e10d1 /src/main/java/bjc/data/Identity.java | |
| parent | 1b9aa36ee069938d49dc719dd0f23b6d877229cc (diff) | |
Update documentation
Diffstat (limited to 'src/main/java/bjc/data/Identity.java')
| -rw-r--r-- | src/main/java/bjc/data/Identity.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/main/java/bjc/data/Identity.java b/src/main/java/bjc/data/Identity.java index e488072..fc4798e 100644 --- a/src/main/java/bjc/data/Identity.java +++ b/src/main/java/bjc/data/Identity.java @@ -99,8 +99,8 @@ public class Identity<ContainedType> implements Holder<ContainedType> { /** * Create a new identity container. * - * @param val - * The contained value. + * @param <ContainedType> The type of the contained value. + * @param val The contained value. * * @return A new identity container. */ @@ -110,7 +110,9 @@ public class Identity<ContainedType> implements Holder<ContainedType> { /** * Create a new empty identity container. - * + * + * @param <ContainedType> The type of the contained value. + * * @return A new empty identity container. */ public static <ContainedType> Identity<ContainedType> id() { |
