From 946cab444bc301d8a7c756a1bab039558288de89 Mon Sep 17 00:00:00 2001 From: "Benjamin J. Culkin" Date: Wed, 11 Oct 2017 13:41:07 -0300 Subject: Cleanup work --- base/src/main/java/bjc/utils/data/Option.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'base/src/main/java/bjc/utils/data/Option.java') diff --git a/base/src/main/java/bjc/utils/data/Option.java b/base/src/main/java/bjc/utils/data/Option.java index 37e0cde..6eae21f 100644 --- a/base/src/main/java/bjc/utils/data/Option.java +++ b/base/src/main/java/bjc/utils/data/Option.java @@ -4,21 +4,21 @@ import java.util.function.Function; import java.util.function.UnaryOperator; /** - * A holder that may or may not contain a value + * A holder that may or may not contain a value. * * @author ben * * @param - * The type of the value that may or may not be held + * The type of the value that may or may not be held. */ public class Option implements IHolder { private ContainedType held; /** - * Create a new optional, using the given initial value + * Create a new optional, using the given initial value. * * @param seed - * The initial value for the optional + * The initial value for the optional. */ public Option(final ContainedType seed) { held = seed; -- cgit v1.2.3