Normalize spelling to US English

This commit is contained in:
Gary Gregory 2023-10-31 06:18:19 -04:00
parent fccb6fc0ce
commit ce4d2c8b17
1 changed files with 5 additions and 5 deletions

View File

@ -400,14 +400,14 @@ public class ObjectGraphIteratorTest extends AbstractIteratorTest<Object> {
static class Leaf {
String colour;
String color;
String getColour() {
return colour;
String getColor() {
return color;
}
void setColour(final String colour) {
this.colour = colour;
void setColor(final String colour) {
this.color = colour;
}
}