Skip to content

Commit a7f06f0

Browse files
committed
Fix javadoc
Corrected closing tag of <code/> blocks
1 parent eb5c996 commit a7f06f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/de/poiu/nbee/parser/CmdlineParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public CmdlineParser() {
8989
* The given map must contain the placeholders as values and the replacement strings as values.
9090
* <p>
9191
* The placeholder <i>must</i> contain the surrounding <code>${}</code>. Therefore set it as
92-
* <code>replacementMap.put("file", "/path/to/file");<code>
92+
* <code>replacementMap.put("file", "/path/to/file");</code>
9393
* but instead
9494
* <code>replacementMap.put("${file}", "/path/to/file");</code> *
9595
*
@@ -106,7 +106,7 @@ public CmdlineParser(final Map<String, String> replacements) {
106106
* Specifies a replacement string for a given placeholder.
107107
* <p>
108108
* The placeholder <i>must</i> contain the surrounding <code>${}</code>. Therefore don't call
109-
* <code>cmdlineParser.replace("file", "/path/to/file");<code>
109+
* <code>cmdlineParser.replace("file", "/path/to/file");</code>
110110
* but instead
111111
* <code>cmdlineParser.replace("${file}", "/path/to/file");</code>
112112
* <p>

0 commit comments

Comments
 (0)