Skip to content

Commit 7b6ad40

Browse files
committed
Make javadoc lint happy
1 parent c8848ec commit 7b6ad40

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

jbake-core/src/main/java/org/jbake/app/configuration/JBakeConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,12 +332,12 @@ public interface JBakeConfiguration {
332332
Charset getInputCharset();
333333

334334
/**
335-
* Should JBake prefix <img src="..."> with site base URL?
335+
* Should JBake prefix &lt;img src="..."> with site base URL?
336336
*/
337337
boolean getMakeImagesUrlAbolute();
338338

339339
/**
340-
* Should JBake prefix <img src="..."> with site base URL relative URLs?
340+
* Should JBake prefix &lt;img src="..."> with site base URL relative URLs?
341341
* This is not disjunctive from IMAGES_URL_MAKE_ABSOLUTE.
342342
*/
343343
boolean getRelativeImagePathsPointToAssets();

jbake-core/src/main/java/org/jbake/parser/AsciidoctorEngine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public Map<String, String> parseHeaderBlock(final ParserContext context) {
121121
documentModel.put(key, attributes.get(key));
122122
}
123123
}
124-
124+
125125
return null; // TODO: Create the header map first, then apply to the doc.
126126
}
127127

jbake-core/src/main/java/org/jbake/parser/texy/TitleExtractor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public void tryExtractHighestHeader(ParserContext context)
7676

7777
/**
7878
* Getting an inner XML is a bit complicated in JDK.
79-
* TODO: All this just to get rid if the previously added <div>? Let's use JSoup I guess.
79+
* TODO: All this just to get rid if the previously added <div/>? Let's use JSoup I guess.
8080
*/
8181
public static String innerXml(Node docRootNode)
8282
{

0 commit comments

Comments
 (0)