summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/data/Toggle.java
diff options
context:
space:
mode:
authorBen Culkin <scorpress@gmail.com>2020-04-13 18:43:13 -0400
committerBen Culkin <scorpress@gmail.com>2020-04-13 18:43:13 -0400
commitf51f6da7319787348c38b875652b5c0e9f88c8aa (patch)
tree943888fc724da2d2dedd89abec99dcbfcc089fd0 /src/main/java/bjc/data/Toggle.java
parent9052ed6da37af23ea82588d248f409e60a33c6cb (diff)
Cleanup pass
Pass to do some cleanups
Diffstat (limited to 'src/main/java/bjc/data/Toggle.java')
-rw-r--r--src/main/java/bjc/data/Toggle.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/bjc/data/Toggle.java b/src/main/java/bjc/data/Toggle.java
index 14c77d3..17c5a8e 100644
--- a/src/main/java/bjc/data/Toggle.java
+++ b/src/main/java/bjc/data/Toggle.java
@@ -6,12 +6,12 @@ package bjc.data;
* @author EVE
*
* @param <E>
- * The value stored in the toggle.
+ * The value stored in the toggle.
*/
public interface Toggle<E> {
/**
- * Retrieve the currently-aligned value of this toggle, and swap the
- * value to the new one.
+ * Retrieve the currently-aligned value of this toggle, and swap the value to
+ * the new one.
*
* @return The previously-aligned value.
*/
@@ -28,7 +28,7 @@ public interface Toggle<E> {
* Change the alignment of the toggle.
*
* @param isLeft
- * Whether the toggle should be left-aligned or not.
+ * Whether the toggle should be left-aligned or not.
*/
void set(boolean isLeft);
}