From 6279142d0acdc679a2ccc4ca006ce44766ea85c4 Mon Sep 17 00:00:00 2001 From: Sophiah Ho Date: Wed, 3 Apr 2024 01:35:40 -0400 Subject: [PATCH] Clarify what this parameter does without reference to internal logic, which also fixes the typo (#186) --- .../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 9dbf052..3ff3477 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 final class DiffRowGenerator { } /** - * 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;