Skip to content

Commit d5a43fb

Browse files
committed
Fix JavaDoc issues
1 parent 9d7ff6b commit d5a43fb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/com/nordstrom/common/jdbc/DatabaseUtils.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
* - web service).</li>
7171
* </ul>
7272
* <b>Query Collection Example</b>
73-
* <p>
73+
*
7474
* <pre>
7575
* public class OpctConfig extends {@code SettingsCore<OpctConfig.OpctValues>} {
7676
*
@@ -190,13 +190,13 @@
190190
* /** args: [ ] *&#47;
191191
* SHOW_SUPPLIERS("SHOW_SUPPLIERS()"),
192192
* /** args: [ coffee_name, supplier_name ] *&#47;
193-
* GET_SUPPLIER_OF_COFFEE("GET_SUPPLIER_OF_COFFEE(>, <)", Types.VARCHAR, Types.VARCHAR),
193+
* GET_SUPPLIER_OF_COFFEE("GET_SUPPLIER_OF_COFFEE(&gt;, &lt;)", Types.VARCHAR, Types.VARCHAR),
194194
* /** args: [ coffee_name, max_percent, new_price ] *&#47;
195-
* RAISE_PRICE("RAISE_PRICE(>, >, =)", Types.VARCHAR, Types.REAL, Types.NUMERIC),
195+
* RAISE_PRICE("RAISE_PRICE(&gt;, &gt;, =)", Types.VARCHAR, Types.REAL, Types.NUMERIC),
196196
* /** args: [ str, val... ] *&#47;
197-
* IN_VARARGS("IN_VARARGS(<, >:)", Types.VARCHAR, Types.INTEGER),
197+
* IN_VARARGS("IN_VARARGS(&lt;, &gt;:)", Types.VARCHAR, Types.INTEGER),
198198
* /** args: [ val, str... ] *&#47;
199-
* OUT_VARARGS("OUT_VARARGS(>, <:)", Types.INTEGER, Types.VARCHAR);
199+
* OUT_VARARGS("OUT_VARARGS(&gt;, &lt;:)", Types.INTEGER, Types.VARCHAR);
200200
*
201201
* private int[] argTypes;
202202
* private String signature;
@@ -698,7 +698,7 @@ public interface SProcAPI {
698698
*
699699
* For example:
700700
*
701-
* <blockquote>RAISE_PRICE(>, >, =)</blockquote>
701+
* <blockquote>RAISE_PRICE(&gt;, &lt;, =)</blockquote>
702702
*
703703
* The first and second arguments are IN parameters, and the third argument is an INOUT parameter.
704704
*

0 commit comments

Comments
 (0)