Skip to content

Commit 15a694e

Browse files
committed
Fix typos
1 parent c619131 commit 15a694e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/main/java/net/imglib2/algorithm/convolution/Convolution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* But also to query for the required input image size and preferred input image type.
1414
* The ExectorService can be set, to allow multi or single threaded operation.
1515
* <p>
16-
* Very imported multiple {@link Convolution}s can be easily concatenated.
16+
* Very importantly, multiple {@link Convolution}s can be easily concatenated.
1717
*
1818
* @author Matthias Arzt
1919
*/

src/main/java/net/imglib2/algorithm/convolution/LineConvolution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ protected void process( RandomAccessible< ? extends T > source, RandomAccessible
8585
/**
8686
* {@link #forEachIntervalElementInParallel(ExecutorService, int, Interval, Supplier)} executes a given action
8787
* for each position in a given interval. Therefor it starts the specified number of tasks. Each tasks calls
88-
* the action factory ones, to get an instance of the action that should be executed. The action is then called
88+
* the action factory once, to get an instance of the action that should be executed. The action is then called
8989
* multiple times by the task.
9090
*
9191
* @param service {@link ExecutorService} used to create the tasks.

src/test/java/net/imglib2/algorithm/convolution/ConvolverBenchmark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public void asymmetricNativeConvolver()
8383
}
8484

8585
@Benchmark
86-
public void asymmetricNumericConvolve()
86+
public void asymmetricNumericConvolver()
8787
{
8888
final Runnable runnable = new ConvolverNumericType<>( kernel, in(), out(), d, lineLength );
8989
runnable.run();

src/test/java/net/imglib2/algorithm/convolution/GaussBenchmark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public void benchmarkSeparableKernelConvolution()
4444
}
4545

4646
@Benchmark
47-
public void benchmarkSeparableSymmertricConvolution()
47+
public void benchmarkSeparableSymmetricConvolution()
4848
{
4949
double[][] halfKernels = Gauss3.halfkernels( new double[] { sigma, sigma, sigma } );
5050
final int numthreads = Runtime.getRuntime().availableProcessors();

0 commit comments

Comments
 (0)