summaryrefslogtreecommitdiff
path: root/base/src/main/java/bjc/utils/data/Option.java
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2017-10-11 13:41:07 -0300
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2017-10-11 13:41:07 -0300
commit946cab444bc301d8a7c756a1bab039558288de89 (patch)
tree419f27c39a509bcd83cae0e6630be8eb7ff95a30 /base/src/main/java/bjc/utils/data/Option.java
parentc82e3b3b2de0633317ec8fc85925e91422820597 (diff)
Cleanup work
Diffstat (limited to 'base/src/main/java/bjc/utils/data/Option.java')
-rw-r--r--base/src/main/java/bjc/utils/data/Option.java8
1 files changed, 4 insertions, 4 deletions
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 <ContainedType>
- * 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<ContainedType> implements IHolder<ContainedType> {
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;