docs: add missing docblocks for getHTML() in StringBlock

This commit is contained in:
Connor Tumbleson 2021-09-01 07:40:41 -04:00
parent 5d85f34a2a
commit 3f09781939
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75

View File

@ -124,7 +124,7 @@ public class StringBlock {
this.position = position; this.position = position;
this.matchingTagPosition = matchingTagPosition; this.matchingTagPosition = matchingTagPosition;
} }
/** /**
* compares this tag and another, returning the order that should be between them. * compares this tag and another, returning the order that should be between them.
* order by: * order by:
@ -266,7 +266,8 @@ public class StringBlock {
} }
/** /**
* Returns string with style tags (html-like). * @param index Location (index) of string to process to HTML
* @return String Returns string with style tags (html-like).
*/ */
public String getHTML(int index) { public String getHTML(int index) {
String raw = getString(index); String raw = getString(index);