Skip to content

Commit 3166508

Browse files
authored
Merge pull request #330 from kmh916/update-comment-version
Update reference spec version in comments to 0.31.2
2 parents a6b0abc + 1fa49f4 commit 3166508

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

commonmark/src/main/java/org/commonmark/node/FencedCodeBlock.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public void setFenceIndent(int fenceIndent) {
6767
}
6868

6969
/**
70-
* @see <a href="http://spec.commonmark.org/0.18/#info-string">CommonMark spec</a>
70+
* @see <a href="http://spec.commonmark.org/0.31.2/#info-string">CommonMark spec</a>
7171
*/
7272
public String getInfo() {
7373
return info;

commonmark/src/main/java/org/commonmark/node/HtmlBlock.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* HTML block
55
*
6-
* @see <a href="http://spec.commonmark.org/0.18/#html-blocks">CommonMark Spec</a>
6+
* @see <a href="http://spec.commonmark.org/0.31.2/#html-blocks">CommonMark Spec</a>
77
*/
88
public class HtmlBlock extends Block {
99

commonmark/src/main/java/org/commonmark/node/HtmlInline.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Inline HTML element.
55
*
6-
* @see <a href="http://spec.commonmark.org/0.24/#raw-html">CommonMark Spec</a>
6+
* @see <a href="http://spec.commonmark.org/0.31.2/#raw-html">CommonMark Spec</a>
77
*/
88
public class HtmlInline extends Node {
99

commonmark/src/main/java/org/commonmark/node/Link.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* Note that the text in the link can contain inline formatting, so it could also contain an {@link Image} or
1919
* {@link Emphasis}, etc.
2020
*
21-
* @see <a href="http://spec.commonmark.org/0.26/#links">CommonMark Spec for links</a>
21+
* @see <a href="http://spec.commonmark.org/0.31.2/#links">CommonMark Spec for links</a>
2222
*/
2323
public class Link extends Node {
2424

commonmark/src/main/java/org/commonmark/node/LinkReferenceDefinition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* They can be referenced anywhere else in the document to produce a link using <code>[foo]</code>. The definitions
1010
* themselves are usually not rendered in the final output.
1111
*
12-
* @see <a href="https://spec.commonmark.org/0.29/#link-reference-definition">Link reference definitions</a>
12+
* @see <a href="https://spec.commonmark.org/0.31.2/#link-reference-definition">Link reference definitions</a>
1313
*/
1414
public class LinkReferenceDefinition extends Block {
1515

commonmark/src/main/java/org/commonmark/node/ListBlock.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public abstract class ListBlock extends Block {
66

77
/**
88
* @return whether this list is tight or loose
9-
* @see <a href="https://spec.commonmark.org/0.28/#tight">CommonMark Spec for tight lists</a>
9+
* @see <a href="https://spec.commonmark.org/0.31.2/#tight">CommonMark Spec for tight lists</a>
1010
*/
1111
public boolean isTight() {
1212
return tight;

0 commit comments

Comments
 (0)