summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java
diff options
context:
space:
mode:
authorEVE <EVE@EVE-PC>2017-03-13 16:42:21 -0400
committerEVE <EVE@EVE-PC>2017-03-13 16:42:21 -0400
commit27bf571d6413c3cc6a5d664b5bddd38d21d7b1cd (patch)
tree847fb52acb091c1c613d37b8477094d5762c6988 /BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java
parentaa807a96cae2c47259fb38f710640883060339e9 (diff)
Formatting
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java b/BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java
index 679af52..3eb086b 100644
--- a/BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java
+++ b/BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java
@@ -16,13 +16,13 @@ public class FuncUtils {
* function
*
* @param <A>
- * The initial type of the function
+ * The initial type of the function
* @param <B>
- * The intermediate type of the function
+ * The intermediate type of the function
* @param <C>
- * The terminal type of the function
+ * The terminal type of the function
* @param func
- * The function to transform
+ * The function to transform
* @return The function transformed into a unary function returning a
* function
*/
@@ -36,9 +36,9 @@ public class FuncUtils {
* Do the specified action the specified number of times
*
* @param nTimes
- * The number of times to do the action
+ * The number of times to do the action
* @param cons
- * The action to perform
+ * The action to perform
*/
public static void doTimes(int nTimes, Consumer<Integer> cons) {
for (int i = 0; i < nTimes; i++) {