Skip to content

Commit 83253bc

Browse files
committed
Fix misspellings
1 parent 8ac7025 commit 83253bc

File tree

71 files changed

+157
-157
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+157
-157
lines changed

scijava-concurrent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This module provides a framework for executing `Runnable`s and `Callable`s. By abstracting the evaluation of functionality, we can enable the framework to intelligently execute code, increasing performance.
44

5-
## The `Parallelziation` class
5+
## The `Parallelization` class
66

77
This class provides many static utilities for executing functionality.
88

scijava-concurrent/src/main/java/org/scijava/concurrent/Parallelization.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* The algorithm needs to use the {@link TaskExecutor} returned by
3939
* {@link Parallelization#getTaskExecutor()} to implement the parallelization.
4040
* Alternatively it can use {@link Parallelization#getExecutorService()}. But
41-
* {@link TaskExecutor} is simpler and better suited for image precessing
41+
* {@link TaskExecutor} is simpler and better suited for image processing
4242
* algorithms.
4343
* <p>
4444
* The algorithm can be executed singleThreaded, multiThreaded or by using a

scijava-discovery/src/main/java/org/scijava/discovery/Discoverer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ static Iterable<Discoverer> allProvided() {
115115
* is capable of discovering all interfaces {@code use}d by the
116116
* caller module. If we instead called
117117
* {@link ServiceLoader#load(Class)} directly, we'd only be able to
118-
* discover implmentations whose interface was {@code use}d by
118+
* discover implementations whose interface was {@code use}d by
119119
* {@code module org.scijava.discovery}.
120120
* <p>
121121
* It is in the user's best interest to make this {@link Function} as
@@ -143,7 +143,7 @@ static <T> List<Discoverer> all(
143143
}
144144

145145
/**
146-
* Accumulates mutiple {@link Discoverer}s into one mega-{@code Discoverer}
146+
* Accumulates multiple {@link Discoverer}s into one mega-{@code Discoverer}
147147
*
148148
* @param discoverers the {@link Discoverer}s to be wrapped
149149
* @return the mega-{@link Discoverer}

scijava-ops-api/src/main/java/org/scijava/ops/api/Hints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public Hints plus(String... hints) {
8484
}
8585

8686
/**
87-
* Reutrns a <b>new</b> {@link Hints} with:
87+
* Returns a <b>new</b> {@link Hints} with:
8888
* <ol>
8989
* <li>All hints in this {@link Hints}</li>
9090
* <li>All hints in {@code other}</li>

scijava-ops-api/src/main/java/org/scijava/ops/api/package-info.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* their own data structures, algorithm syntax, and other requirements. With all
77
* of these differences, library interoperability can be a daunting task. This
88
* can lead to algorithm reimplementations, unmaintained code, and a lack of
9-
* cooperation between open-source communitites. SciJava Ops seeks to unify
9+
* cooperation between open-source communities. SciJava Ops seeks to unify
1010
* different libraries under a single framework, separating the development of
1111
* new algorithms from the way they are executed. Put more succinctly, the goals
1212
* of SciJava Ops are the following:
@@ -104,9 +104,9 @@
104104
* <li>Structural-equivalence in Ops allows us to consider similar Ops in
105105
* different languages as one, and to delegate to the proper Op using user
106106
* inputs. In other words, you can call structural-equivalent Ops identically,
107-
* and Scijava Ops will take care to call the correct Op based on the concrete
107+
* and SciJava Ops will take care to call the correct Op based on the concrete
108108
* inputs provided.</li>
109-
* <li>Result-equivalence, and therefore reproducability, in Ops, is guaranteed
109+
* <li>Result-equivalence, and therefore reproducibility, in Ops, is guaranteed
110110
* within an OpEnvironment and a set of input objects, but not just for Op
111111
* calls. This allows us to ensure reproducible pipelines, but also allows us to
112112
* introduce new Ops into the pipeline or to run pipelines on different inputs

scijava-ops-benchmarks/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<artifactId>scijava-ops-benchmarks</artifactId>
1313

1414
<name>SciJava Ops Benchmarks</name>
15-
<description>SciJava Operations Benchmarks: A set of benchmarking tests for the Scijava Ops Engine library</description>
15+
<description>SciJava Operations Benchmarks: A set of benchmarking tests for the SciJava Ops Engine library</description>
1616
<url>https://github.com/scijava/scijava-ops-benchmarks</url>
1717
<inceptionYear>2023</inceptionYear>
1818
<organization>

scijava-ops-engine/src/main/java/org/scijava/ops/engine/exceptions/impl/PrivateOpException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
import org.scijava.ops.engine.exceptions.InvalidOpException;
3636

3737
/**
38-
* Exception thrown when an Op is declared as private. This is unallowed as the
38+
* Exception thrown when an Op is declared as private. This is disallowed as the
3939
* Ops engine cannot access it.
4040
*
4141
* @author Gabriel Selzer

scijava-ops-engine/src/main/java/org/scijava/ops/engine/impl/DefaultOpHistory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
*/
6363
public class DefaultOpHistory implements OpHistory {
6464

65-
// -- DATA STRCUTURES -- //
65+
// -- DATA STRUCTURES -- //
6666

6767
private final Map<Object, List<RichOp<?>>> mutationMap = new WeakHashMap<>();
6868

scijava-ops-engine/src/main/java/org/scijava/ops/engine/matcher/MatchingResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public static String matchInfo(final MatchingResult res) {
130130
sb.append("Multiple '" + request.getLabel() + "' ops of priority " +
131131
priority + ":\n");
132132
if (typeCheckingIncomplete(matches)) {
133-
sb.append("Incomplete output type checking may have occured!\n");
133+
sb.append("Incomplete output type checking may have occurred!\n");
134134
}
135135
int count = 0;
136136
for (final OpCandidate match : matches) {

scijava-ops-engine/src/main/java/org/scijava/ops/engine/matcher/convert/PrimitiveArrayConverters.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public class PrimitiveArrayConverters<N extends Number> implements
124124
return oa;
125125
};
126126

127-
// -- Object Focusers -- //
127+
// -- Object Converters -- //
128128

129129
@OpHints(hints = { Conversion.FORBIDDEN })
130130
@OpField(names = "engine.convert")
@@ -157,7 +157,7 @@ public class PrimitiveArrayConverters<N extends Number> implements
157157
.stream().map(d -> d == null ? null : d.doubleValue()).toArray(
158158
Double[]::new);
159159

160-
// -- Primitive Focusers -- //
160+
// -- Primitive Converters -- //
161161

162162
@OpHints(hints = { Conversion.FORBIDDEN })
163163
@OpField(names = "engine.convert")

0 commit comments

Comments
 (0)