Skip to content

Commit

Permalink
docs: add missing docblocks for getHTML() in StringBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
iBotPeaches committed Sep 1, 2021
1 parent 5d85f34 commit 3f09781
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private static class Tag implements Comparable<Tag> {
this.position = position;
this.matchingTagPosition = matchingTagPosition;
}

/**
* compares this tag and another, returning the order that should be between them.
* order by:
Expand Down Expand Up @@ -266,7 +266,8 @@ String processStyledString(StyledString styledString) {
}

/**
* 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) {
String raw = getString(index);
Expand Down

0 comments on commit 3f09781

Please sign in to comment.