Skip to content

Commit

Permalink
Normalize Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 18, 2024
1 parent 8c3e13f commit 84bcb31
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ protected List<Queue<String>> makeColumnQueues(final List<String> columnData, fi
}

/**
* Print a queue of text.
* Prints a queue of text.
*
* @param queue the queue of text to print.
* @throws IOException on output error.
Expand All @@ -355,7 +355,7 @@ private void printQueue(final Queue<String> queue) throws IOException {
}

/**
* Print wrapped text using the TextHelpAppendable output style.
* Prints wrapped text using the TextHelpAppendable output style.
*
* @param text the text to wrap
* @throws IOException on output error.
Expand All @@ -365,7 +365,7 @@ public void printWrapped(final String text) throws IOException {
}

/**
* Print wrapped text.
* Prints wrapped text.
*
* @param text the text to wrap
* @param style the style for the wrapped text.
Expand All @@ -387,7 +387,7 @@ private int resize(final int orig, final double fraction) {
}

/**
* Resize a TextBuilder based on the fractional size.
* Resizes a TextBuilder based on the fractional size.
*
* @param builder the builder to adjust.
* @param fraction the fractional size (e.g. percentage of the current size) that the builder should be.
Expand Down Expand Up @@ -433,7 +433,7 @@ public void setMaxWidth(final int maxWidth) {
}

/**
* Write one line from each of the {@code columnQueues} until all the queues are exhausted. If an exhausted queue is encountered while other queues continue
* Writes one line from each of the {@code columnQueues} until all the queues are exhausted. If an exhausted queue is encountered while other queues continue
* to have content the exhausted queue will produce empty text for the output width of the column (maximum width + left pad).
*
* @param columnQueues the List of queues that represent the columns of data.
Expand Down

0 comments on commit 84bcb31

Please sign in to comment.