Skip to content

Commit 70dfaef

Browse files
committed
spelling: maximum
1 parent dfe8826 commit 70dfaef

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

java/com/google/openlocationcode/OpenLocationCode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public final class OpenLocationCode {
7777
// The maximum value for longitude in degrees.
7878
private static final BigDecimal LONGITUDE_MAX = new BigDecimal(180);
7979

80-
// Maxiumum code length using just lat/lng pair encoding.
80+
// Maximum code length using just lat/lng pair encoding.
8181
private static final int PAIR_CODE_LENGTH = 10;
8282

8383
// Number of columns in the grid refinement method.

js/closure/openlocationcode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ var LATITUDE_MAX = 90;
8080
// The maximum value for longitude in degrees.
8181
var LONGITUDE_MAX = 180;
8282

83-
// Maxiumum code length using lat/lng pair encoding. The area of such a
83+
// Maximum code length using lat/lng pair encoding. The area of such a
8484
// code is approximately 13x13 meters (at the equator), and should be suitable
8585
// for identifying buildings. This excludes prefix and separator characters.
8686
var PAIR_CODE_LENGTH = 10;

js/src/openlocationcode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
// The maximum value for longitude in degrees.
109109
var LONGITUDE_MAX_ = 180;
110110

111-
// Maxiumum code length using lat/lng pair encoding. The area of such a
111+
// Maximum code length using lat/lng pair encoding. The area of such a
112112
// code is approximately 13x13 meters (at the equator), and should be suitable
113113
// for identifying buildings. This excludes prefix and separator characters.
114114
var PAIR_CODE_LENGTH_ = 10;

python/openlocationcode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
#The maximum value for longitude in degrees.
8282
LONGITUDE_MAX_ = 180
8383

84-
#Maxiumum code length using lat/lng pair encoding. The area of such a
84+
#Maximum code length using lat/lng pair encoding. The area of such a
8585
#code is approximately 13x13 meters (at the equator), and should be suitable
8686
#for identifying buildings. This excludes prefix and separator characters.
8787
PAIR_CODE_LENGTH_ = 10

ruby/lib/plus_codes.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module PlusCodes
99
# The max number of characters can be placed before the separator.
1010
SEPARATOR_POSITION = 8
1111

12-
# Maxiumum code length using lat/lng pair encoding. The area of such a
12+
# Maximum code length using lat/lng pair encoding. The area of such a
1313
# code is approximately 13x13 meters (at the equator), and should be suitable
1414
# for identifying buildings. This excludes prefix and separator characters.
1515
PAIR_CODE_LENGTH = 10

rust/src/consts.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub const LATITUDE_MAX: f64 = 90f64;
2525
// The maximum value for longitude in degrees.
2626
pub const LONGITUDE_MAX: f64 = 180f64;
2727

28-
// Maxiumum code length using lat/lng pair encoding. The area of such a
28+
// Maximum code length using lat/lng pair encoding. The area of such a
2929
// code is approximately 13x13 meters (at the equator), and should be suitable
3030
// for identifying buildings. This excludes prefix and separator characters.
3131
pub const PAIR_CODE_LENGTH: usize = 10;

visualbasic/OpenLocationCode.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Private Const LATITUDE_MAX_ As Double = 90
9090
' The maximum value for longitude in degrees.
9191
Private Const LONGITUDE_MAX_ As Double = 180
9292

93-
' Maxiumum code length using lat/lng pair encoding. The area of such a
93+
' Maximum code length using lat/lng pair encoding. The area of such a
9494
' code is approximately 13x13 meters (at the equator), and should be suitable
9595
' for identifying buildings. This excludes prefix and separator characters.
9696
Private Const PAIR_CODE_LENGTH_ As Integer = 10

0 commit comments

Comments
 (0)