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 { static class Leaf {
String colour; String color;
String getColour() { String getColor() {
return colour; return color;
} }
void setColour(final String colour) { void setColor(final String colour) {
this.colour = colour; this.color = colour;
} }
} }