Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README-java-imports.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ If the only conflicts are in import statements, or there are no conflicts, then:
* Remove all unneeded imports. A needed import is one that is used somewhere
in the Java file.

(If there are conflicts beyound import statements, such as in code or in
(If there are conflicts beyond import statements, such as in code or in
comments, then you should first resolve those other conflicts, then run the Java
imports merger as a merge tool.)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2478,7 +2478,7 @@ public String toString() {
}

/**
* Unescape selected chars for compatability with JavaScript's encodeURI.
* Unescape selected chars for compatibility with JavaScript's encodeURI.
* In speed critical applications this could be dropped since the
* receiving application will certainly decode these fine.
* Note that this function is case-sensitive. Thus "%3f" would not be
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public AdjacentLinesMerger(boolean verbose) {

List<ConflictElement> hunks = cf.hunks();
if (hunks == null) {
Main.exitErroneously("Unparseable file " + cf.path);
Main.exitErroneously("Unparsable file " + cf.path);
throw new Error("unreachable");
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/plumelib/merging/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public Main() {}
@Parameters(index = "3", description = "The right, or other, file")
Path rightPath;

/** Fro a merge tool, the merged file; is overwritten. For a merge driver, null. */
/** For a merge tool, the merged file; is overwritten. For a merge driver, null. */
@Parameters(
arity = "0..1",
index = "4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Represents a file that may contain conflict markers.
*
* <p>It is either erroneous (unparseable), or it is a sequence of ConflictElement objects.
* <p>It is either erroneous (unparsable), or it is a sequence of ConflictElement objects.
*
* <p>There are two general forms of conflicted sections of a file:
*
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/ImportsTest11A.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void thenHasOneDigipeater() {
}

@Test
@DisplayName("Then it should have a correct lattitude and longitude")
@DisplayName("Then it should have a correct latitude and longitude")
public void thenHasPosition() {
Collection<APRSData> dataFields = packet2.getAprsInformation().getAprsData().values();
for ( APRSData dataField : dataFields ) {
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/ImportsTest11Goal.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void thenHasOneDigipeater() {
}

@Test
@DisplayName("Then it should have a correct lattitude and longitude")
@DisplayName("Then it should have a correct latitude and longitude")
public void thenHasPosition() {
Collection<APRSData> dataFields = packet2.getAprsInformation().getAprsData().values();
for ( APRSData dataField : dataFields ) {
Expand Down