From 55f2dcf4f6aa9b461e3daf033715a45ebca7551f Mon Sep 17 00:00:00 2001 From: anomal Date: Fri, 29 Mar 2024 17:10:25 -0400 Subject: [PATCH] Clarify what this parameter does without reference to internal logic, which also fixes the typo --- .../main/java/com/github/difflib/text/DiffRowGenerator.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/java-diff-utils/src/main/java/com/github/difflib/text/DiffRowGenerator.java b/java-diff-utils/src/main/java/com/github/difflib/text/DiffRowGenerator.java index 9dbf052b..3ff34774 100644 --- a/java-diff-utils/src/main/java/com/github/difflib/text/DiffRowGenerator.java +++ b/java-diff-utils/src/main/java/com/github/difflib/text/DiffRowGenerator.java @@ -492,11 +492,10 @@ public Builder ignoreWhiteSpaces(boolean val) { } /** - * Give the originial old and new text lines to Diffrow without any - * additional processing and without any tags to highlight the change. + * Report all lines without markup on the old or new text. * * @param val the value to set. Default: false. - * @return builder with configured reportLinesUnWrapped parameter + * @return builder with configured reportLinesUnchanged parameter */ public Builder reportLinesUnchanged(final boolean val) { reportLinesUnchanged = val;