Skip to content

Commit c1aa689

Browse files
author
Davide Santonocito
committed
Fix a typo in DiffUtils.java javadocs
1 parent 01a7fb1 commit c1aa689

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

java-diff-utils/src/main/java/com/github/difflib/DiffUtils.java

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public final class DiffUtils {
4242
/**
4343
* Sets the default diff algorithm factory to be used by all diff routines.
4444
*
45-
* @param factory a {@link DiffAlgorithmFactory} represnting the new default diff algorithm factory.
45+
* @param factory a {@link DiffAlgorithmFactory} representing the new default diff algorithm factory.
4646
*/
4747
public static void withDefaultDiffAlgorithmFactory(DiffAlgorithmFactory factory) {
4848
DEFAULT_DIFF = factory;
@@ -52,9 +52,9 @@ public static void withDefaultDiffAlgorithmFactory(DiffAlgorithmFactory factory)
5252
* Computes the difference between two sequences of elements using the default diff algorithm.
5353
*
5454
* @param <T> a generic representing the type of the elements to be compared.
55-
* @param original a {@link List} represnting the original sequence of elements. Must not be {@code null}.
56-
* @param revised a {@link List} represnting the revised sequence of elements. Must not be {@code null}.
57-
* @param progress a {@link DiffAlgorithmListener} represnting the progress listener. Can be {@code null}.
55+
* @param original a {@link List} representing the original sequence of elements. Must not be {@code null}.
56+
* @param revised a {@link List} representing the revised sequence of elements. Must not be {@code null}.
57+
* @param progress a {@link DiffAlgorithmListener} representing the progress listener. Can be {@code null}.
5858
* @return The patch describing the difference between the original and revised sequences. Never {@code null}.
5959
*/
6060
public static <T> Patch<T> diff(List<T> original, List<T> revised, DiffAlgorithmListener progress) {
@@ -65,8 +65,8 @@ public static <T> Patch<T> diff(List<T> original, List<T> revised, DiffAlgorithm
6565
* Computes the difference between two sequences of elements using the default diff algorithm.
6666
*
6767
* @param <T> a generic representing the type of the elements to be compared.
68-
* @param original a {@link List} represnting the original sequence of elements. Must not be {@code null}.
69-
* @param revised a {@link List} represnting the revised sequence of elements. Must not be {@code null}.
68+
* @param original a {@link List} representing the original sequence of elements. Must not be {@code null}.
69+
* @param revised a {@link List} representing the revised sequence of elements. Must not be {@code null}.
7070
* @return The patch describing the difference between the original and revised sequences. Never {@code null}.
7171
*/
7272
public static <T> Patch<T> diff(List<T> original, List<T> revised) {
@@ -77,9 +77,9 @@ public static <T> Patch<T> diff(List<T> original, List<T> revised) {
7777
* Computes the difference between two sequences of elements using the default diff algorithm.
7878
*
7979
* @param <T> a generic representing the type of the elements to be compared.
80-
* @param original a {@link List} represnting the original sequence of elements. Must not be {@code null}.
81-
* @param revised a {@link List} represnting the revised sequence of elements. Must not be {@code null}.
82-
* @param includeEqualParts a {@link boolean} represnting whether to include equal parts in the resulting patch.
80+
* @param original a {@link List} representing the original sequence of elements. Must not be {@code null}.
81+
* @param revised a {@link List} representing the revised sequence of elements. Must not be {@code null}.
82+
* @param includeEqualParts a {@link boolean} representing whether to include equal parts in the resulting patch.
8383
* @return The patch describing the difference between the original and revised sequences. Never {@code null}.
8484
*/
8585
public static <T> Patch<T> diff(List<T> original, List<T> revised, boolean includeEqualParts) {
@@ -89,9 +89,9 @@ public static <T> Patch<T> diff(List<T> original, List<T> revised, boolean inclu
8989
/**
9090
* Computes the difference between two strings using the default diff algorithm.
9191
*
92-
* @param sourceText a {@link String} represnting the original string. Must not be {@code null}.
93-
* @param targetText a {@link String} represnting the revised string. Must not be {@code null}.
94-
* @param progress a {@link DiffAlgorithmListener} represnting the progress listener. Can be {@code null}.
92+
* @param sourceText a {@link String} representing the original string. Must not be {@code null}.
93+
* @param targetText a {@link String} representing the revised string. Must not be {@code null}.
94+
* @param progress a {@link DiffAlgorithmListener} representing the progress listener. Can be {@code null}.
9595
* @return The patch describing the difference between the original and revised strings. Never {@code null}.
9696
*/
9797
public static Patch<String> diff(String sourceText, String targetText,
@@ -105,9 +105,9 @@ public static Patch<String> diff(String sourceText, String targetText,
105105
* Computes the difference between the original and revised list of elements
106106
* with default diff algorithm
107107
*
108-
* @param source a {@link List} represnting the original text. Must not be {@code null}.
109-
* @param target a {@link List} represnting the revised text. Must not be {@code null}.
110-
* @param equalizer a {@link BiPredicate} represnting the equalizer object to replace the default compare
108+
* @param source a {@link List} representing the original text. Must not be {@code null}.
109+
* @param target a {@link List} representing the revised text. Must not be {@code null}.
110+
* @param equalizer a {@link BiPredicate} representing the equalizer object to replace the default compare
111111
* algorithm (Object.equals). If {@code null} the default equalizer of the
112112
* default algorithm is used.
113113
* @return The patch describing the difference between the original and
@@ -131,10 +131,10 @@ public static <T> Patch<T> diff(List<T> original, List<T> revised,
131131
* Computes the difference between the original and revised list of elements
132132
* with default diff algorithm
133133
*
134-
* @param original a {@link List} represnting the original text. Must not be {@code null}.
135-
* @param revised a {@link List} represnting the revised text. Must not be {@code null}.
136-
* @param algorithm a {@link DiffAlgorithmI} represnting the diff algorithm. Must not be {@code null}.
137-
* @param progress a {@link DiffAlgorithmListener} represnting the diff algorithm listener.
134+
* @param original a {@link List} representing the original text. Must not be {@code null}.
135+
* @param revised a {@link List} representing the revised text. Must not be {@code null}.
136+
* @param algorithm a {@link DiffAlgorithmI} representing the diff algorithm. Must not be {@code null}.
137+
* @param progress a {@link DiffAlgorithmListener} representing the diff algorithm listener.
138138
* @param includeEqualParts Include equal data parts into the patch.
139139
* @return The patch describing the difference between the original and
140140
* revised sequences. Never {@code null}.
@@ -154,9 +154,9 @@ public static <T> Patch<T> diff(List<T> original, List<T> revised,
154154
* Computes the difference between the original and revised list of elements
155155
* with default diff algorithm
156156
*
157-
* @param original a {@link List} represnting the original text. Must not be {@code null}.
158-
* @param revised a {@link List} represnting the revised text. Must not be {@code null}.
159-
* @param algorithm a {@link DiffAlgorithmI} represnting the diff algorithm. Must not be {@code null}.
157+
* @param original a {@link List} representing the original text. Must not be {@code null}.
158+
* @param revised a {@link List} representing the revised text. Must not be {@code null}.
159+
* @param algorithm a {@link DiffAlgorithmI} representing the diff algorithm. Must not be {@code null}.
160160
* @return The patch describing the difference between the original and
161161
* revised sequences. Never {@code null}.
162162
*/
@@ -169,8 +169,8 @@ public static <T> Patch<T> diff(List<T> original, List<T> revised, DiffAlgorithm
169169
* "trick" to make out of texts lists of characters, like DiffRowGenerator
170170
* does and merges those changes at the end together again.
171171
*
172-
* @param original a {@link String} represnting the original text. Must not be {@code null}.
173-
* @param revised a {@link String} represnting the revised text. Must not be {@code null}.
172+
* @param original a {@link String} representing the original text. Must not be {@code null}.
173+
* @param revised a {@link String} representing the revised text. Must not be {@code null}.
174174
* @return The patch describing the difference between the original and
175175
* revised sequences. Never {@code null}.
176176
*/
@@ -194,8 +194,8 @@ public static Patch<String> diffInline(String original, String revised) {
194194
/**
195195
* Applies the given patch to the original list and returns the revised list.
196196
*
197-
* @param original a {@link List} represnting the original list.
198-
* @param patch a {@link List} represnting the patch to apply.
197+
* @param original a {@link List} representing the original list.
198+
* @param patch a {@link List} representing the patch to apply.
199199
* @return the revised list.
200200
* @throws PatchFailedException if the patch cannot be applied.
201201
*/
@@ -207,8 +207,8 @@ public static <T> List<T> patch(List<T> original, Patch<T> patch)
207207
/**
208208
* Applies the given patch to the revised list and returns the original list.
209209
*
210-
* @param revised a {@link List} represnting the revised list.
211-
* @param patch a {@link Patch} represnting the patch to apply.
210+
* @param revised a {@link List} representing the revised list.
211+
* @param patch a {@link Patch} representing the patch to apply.
212212
* @return the original list.
213213
* @throws PatchFailedException if the patch cannot be applied.
214214
*/

0 commit comments

Comments
 (0)