summaryrefslogtreecommitdiff
path: root/base/src/main/java/bjc/utils/data/Option.java
diff options
context:
space:
mode:
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;