Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d15ecbb

Browse filesBrowse files
Fix typo javadoc
1 parent db58b82 commit d15ecbb
Copy full SHA for d15ecbb

File tree

4 files changed

+4
-4
lines changed
Filter options

4 files changed

+4
-4
lines changed

‎java-diff-utils-jgit/src/main/java/com/github/difflib/algorithm/jgit/HistogramDiff.java

Copy file name to clipboardExpand all lines: java-diff-utils-jgit/src/main/java/com/github/difflib/algorithm/jgit/HistogramDiff.java
+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import org.eclipse.jgit.diff.SequenceComparator;
2929

3030
/**
31-
* HistorgramDiff using JGit - Library. This one is much more performant than the orginal Myers
31+
* HistorgramDiff using JGit - Library. This one is much more performant than the original Myers
3232
* implementation.
3333
*
3434
* @author toben

‎java-diff-utils/src/main/java/com/github/difflib/algorithm/DiffAlgorithmListener.java

Copy file name to clipboardExpand all lines: java-diff-utils/src/main/java/com/github/difflib/algorithm/DiffAlgorithmListener.java
+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public interface DiffAlgorithmListener {
2424

2525
/**
2626
* This is a step within the diff algorithm. Due to different implementations the value
27-
* is not strict incrementing to the max and is not garantee to reach the max. It could
27+
* is not strict incrementing to the max and is not guarantee to reach the max. It could
2828
* stop before.
2929
* @param value
3030
* @param max

‎java-diff-utils/src/main/java/com/github/difflib/patch/Chunk.java

Copy file name to clipboardExpand all lines: java-diff-utils/src/main/java/com/github/difflib/patch/Chunk.java
+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* <p>
2828
* Text is represented as <code>Object[]</code> because the diff engine is
29-
* capable of handling more than plain ascci. In fact, arrays or lists of any
29+
* capable of handling more than plain ascii. In fact, arrays or lists of any
3030
* type that implements {@link java.lang.Object#hashCode hashCode()} and
3131
* {@link java.lang.Object#equals equals()} correctly can be subject to
3232
* differencing using this library.

‎java-diff-utils/src/main/java/com/github/difflib/patch/Patch.java

Copy file name to clipboardExpand all lines: java-diff-utils/src/main/java/com/github/difflib/patch/Patch.java
+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ private int findPositionWithFuzzAndMoreDelta(PatchApplyingContext<T> ctx, Abstra
224224
private ConflictOutput<T> conflictOutput = CONFLICT_PRODUCES_EXCEPTION;
225225

226226
/**
227-
* Alter normal conflict output behaviour to e.g. inclide some conflict
227+
* Alter normal conflict output behaviour to e.g. include some conflict
228228
* statements in the result, like git does it.
229229
*/
230230
public Patch withConflictOutput(ConflictOutput<T> conflictOutput) {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.