Skip to content

Commit 2a680de

Browse files
gselzerctrueden
authored andcommitted
Close out list elements
1 parent 880eca1 commit 2a680de

File tree

18 files changed

+99
-99
lines changed

18 files changed

+99
-99
lines changed

imagej/imagej-ops2/src/main/java/net/imagej/ops2/filter/tubeness/DefaultTubeness.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,17 +65,17 @@
6565
* the large eigenvalue is negative, we return its absolute value and otherwise
6666
* return 0.
6767
* <ul>
68-
* <li>Source image is filtered first by a gaussian with 𝜎 that sets its scale.
69-
* <li>The the Hessian matrix is calculated for each pixel.
68+
* <li>Source image is filtered first by a gaussian with 𝜎 that sets its scale.</li>
69+
* <li>The the Hessian matrix is calculated for each pixel.</li>
7070
* <li>We yield the eigenvalues of the Hessian matrix. The output of the
71-
* tubeness filter is a combination of these eigenvalues:
71+
* tubeness filter is a combination of these eigenvalues:</li>
7272
* <ul>
7373
* <li>in 2D where <code>λ₂</code> is the largest eigenvalue:
7474
* <code>out = 𝜎 × 𝜎 × |λ₂|</code> if <code>λ₂</code> is negative, 0
75-
* otherwise.
75+
* otherwise.</li>
7676
* <li>in 3D where <code>λ₂</code> and <code>λ₃</code> are the largest
7777
* eigenvalues:, <code>out = 𝜎 × 𝜎 × sqrt( λ₂ * λ₃ )</code> if <code>λ₂</code>
78-
* and <code>λ₃</code> are negative, 0 otherwise.
78+
* and <code>λ₃</code> are negative, 0 otherwise.</li>
7979
* </ul>
8080
* </ul>
8181
* This results in enhancing filaments of roughly <code>𝜎 / sqrt(d)</code>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
* Log describing each execution of an Op. This class is designed to answer two
88
* questions:
99
* <ol>
10-
* <li>What Op(s) produced and/or mutated this output?
10+
* <li>What Op(s) produced and/or mutated this output?</li>
1111
* <li>Given an {@link Object} op, what {@link OpInfo}s (including dependencies)
12-
* were utilized to implement that Op's functionality?
12+
* were utilized to implement that Op's functionality?</li>
1313
* </ol>
1414
* The answers to these two questions allow users to produce an entire
1515
* {@code List<Graph<OpInfo>>}, containing all of the information needed to

scijava/scijava-ops-api/src/main/java/org/scijava/ops/api/features/DependencyMatchingException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
* {@code C} is found to satisfy {@code B}. This will result in an
1313
* {@link OpMatchingException} thrown for Op {@code A}. We would want to know:
1414
* <ol>
15-
* <li>that the request for {@code A} was not fulfilled
16-
* <li>that no match could be found for {@code C}, which was the cause for (1)
15+
* <li>that the request for {@code A} was not fulfilled</li>
16+
* <li>that no match could be found for {@code C}, which was the cause for (1)</li>
1717
* </ol>
1818
* This logic can be generalized for an arbitrarily long Op chain.
1919
*

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
* questions:
1818
* <ol>
1919
* <li>Given an {@link Object} output (e.g. a {@code List<String>}), what Op(s)
20-
* mutated that output?
20+
* mutated that output?</li>
2121
* <li>Given an {@link Object} op, what {@link OpInfo}s were utilized to
22-
* implement that Op's functionality?
22+
* implement that Op's functionality?</li>
2323
* </ol>
2424
* The answers to these two questions allow users to produce an entire
2525
* {@code List<Graph<OpInfo>>}, containing all of the information needed to

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ private static <T> void ensureImplementation(T originalOp, Type reifiedType) {
8787
/**
8888
* Creates a Class given an Op and the reified {@link Type}. This class:
8989
* <ul>
90-
* <li>is of the same functional type as the given Op
91-
* <li>knows its generic type by nature of being a {@link GenericTyped}
90+
* <li>is of the same functional type as the given Op</li>
91+
* <li>knows its generic type by nature of being a {@link GenericTyped}</li>
9292
* </ul>
9393
*
9494
* @param originalOp - the Op that will be simplified

scijava/scijava-ops-engine/src/main/java/org/scijava/ops/engine/matcher/impl/AdaptationMatchingRoutine.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ public void checkSuitability(MatchingConditions conditions)
5656
* examine the applicability of all {@code adapt} Ops with the correct output
5757
* type. We need to check all of them because we do not know whether:
5858
* <ul>
59-
* <li>The dependencies will exist for a particular {@code adapt} Op
59+
* <li>The dependencies will exist for a particular {@code adapt} Op</li>
6060
* <li>The Op we want exists with the correct type for the input of the
61-
* {@code adapt} Op.
61+
* {@code adapt} Op.</li>
6262
* </ul>
6363
*
6464
* @param conditions the {@link MatchingConditions} the return must satisfy

scijava/scijava-ops-engine/src/main/java/org/scijava/ops/engine/matcher/impl/OpAdaptationInfo.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ public String version() {
154154
* For an adapted Op, we define the implementation name as the concatenation
155155
* of:
156156
* <ol>
157-
* <li>The signature of the <b>adaptor</b> {@link InfoChain}
158-
* <li>The adaptation delimiter
159-
* <li>The implementation name of the <b>original info</b>
157+
* <li>The signature of the <b>adaptor</b> {@link InfoChain}</li>
158+
* <li>The adaptation delimiter</li>
159+
* <li>The implementation name of the <b>original info</b></li>
160160
* </ol>
161161
* <p>
162162
* For example, for a source {@code com.example.foo.Bar@1.0.0} with adaptor

scijava/scijava-ops-engine/src/main/java/org/scijava/ops/engine/matcher/impl/OpClassInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,9 @@ public String version() {
210210
* For a {@link Class}, we define the implementation as the concatenation
211211
* of:
212212
* <ol>
213-
* <li>The fully qualified name of the class
213+
* <li>The fully qualified name of the class</li>
214214
* <li>The version of the class containing the field, with a preceding
215-
* {@code @}
215+
* {@code @}</li>
216216
* </ol>
217217
* <p>
218218
* For example, for a field class {@code com.example.foo.Bar}, you might have

scijava/scijava-ops-engine/src/main/java/org/scijava/ops/engine/matcher/impl/OpFieldInfo.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,10 @@ public String version() {
206206
* For an {@link OpField}, we define the implementation as the concatenation
207207
* of:
208208
* <ol>
209-
* <li>The fully qualified name of the class containing the field
210-
* <li>The method field
209+
* <li>The fully qualified name of the class containing the field</li>
210+
* <li>The method field</li>
211211
* <li>The version of the class containing the field, with a preceding
212-
* {@code @}
212+
* {@code @}</li>
213213
* </ol>
214214
* <p>
215215
* For example, for a field {@code baz} in class

scijava/scijava-ops-engine/src/main/java/org/scijava/ops/engine/matcher/impl/OpMethodInfo.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -406,11 +406,11 @@ public String version() {
406406
* For an {@link OpMethod}, we define the implementation as the concatenation
407407
* of:
408408
* <ol>
409-
* <li>The fully qualified name of the class containing the method
410-
* <li>The method name
411-
* <li>The method parameters
409+
* <li>The fully qualified name of the class containing the method</li>
410+
* <li>The method name</li>
411+
* <li>The method parameters</li>
412412
* <li>The version of the class containing the method, with a preceding
413-
* {@code @}
413+
* {@code @}</li>
414414
* </ol>
415415
* <p>
416416
* For example, for a method {@code baz(Double in1, String in2)} in class

0 commit comments

Comments
 (0)