Skip to content

Commit cd60d24

Browse files
committed
Eliminate all Closure compiler warnings.
Create diff class in JS that looks the same as an array-based tuple.
1 parent 6ea48d6 commit cd60d24

11 files changed

+133
-91
lines changed

cpp/diff_match_patch.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ bool Patch::isNull() const {
108108

109109

110110
/**
111-
* Emmulate GNU diff's format.
111+
* Emulate GNU diff's format.
112112
* Header: @@ -382,8 +481,9 @@
113-
* Indicies are printed as 1-based, not 0-based.
113+
* Indices are printed as 1-based, not 0-based.
114114
* @return The GNU diff string
115115
*/
116116
QString Patch::toString() {

csharp/DiffMatchPatch.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ public class Patch {
128128
public int length2;
129129

130130
/**
131-
* Emmulate GNU diff's format.
131+
* Emulate GNU diff's format.
132132
* Header: @@ -382,8 +481,9 @@
133-
* Indicies are printed as 1-based, not 0-based.
133+
* Indices are printed as 1-based, not 0-based.
134134
* @return The GNU diff string.
135135
*/
136136
public override string ToString() {

dart/PatchClass.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ class Patch {
3636
}
3737

3838
/**
39-
* Emmulate GNU diff's format.
39+
* Emulate GNU diff's format.
4040
* Header: @@ -382,8 +481,9 @@
41-
* Indicies are printed as 1-based, not 0-based.
41+
* Indices are printed as 1-based, not 0-based.
4242
* Returns the GNU diff string.
4343
*/
4444
String toString() {

java/src/name/fraser/neil/plaintext/diff_match_patch.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2405,9 +2405,9 @@ public Patch() {
24052405
}
24062406

24072407
/**
2408-
* Emmulate GNU diff's format.
2408+
* Emulate GNU diff's format.
24092409
* Header: @@ -382,8 +481,9 @@
2410-
* Indicies are printed as 1-based, not 0-based.
2410+
* Indices are printed as 1-based, not 0-based.
24112411
* @return The GNU diff string.
24122412
*/
24132413
public String toString() {

javascript/diff_match_patch.js

+28-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)