Skip to content

Commit dfcebc9

Browse files
authored
Minor typo fixes (#596)
Thanks @nicolandu !
1 parent c753439 commit dfcebc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust/src/consts.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pub const GRID_ROWS: usize = 5;
4848
// Minimum length of a code that can be shortened.
4949
pub const MIN_TRIMMABLE_CODE_LEN: usize = 6;
5050

51-
// What to multiple latitude degrees by to get an integer value. There are three pairs representing
51+
// What to multiply latitude degrees by to get an integer value. There are three pairs representing
5252
// decimal digits, and five digits in the grid.
5353
pub const LAT_INTEGER_MULTIPLIER: i64 = (ENCODING_BASE
5454
* ENCODING_BASE
@@ -59,7 +59,7 @@ pub const LAT_INTEGER_MULTIPLIER: i64 = (ENCODING_BASE
5959
* GRID_ROWS
6060
* GRID_ROWS) as i64;
6161

62-
// What to multiple longitude degrees by to get an integer value. There are three pairs representing
62+
// What to multiply longitude degrees by to get an integer value. There are three pairs representing
6363
// decimal digits, and five digits in the grid.
6464
pub const LNG_INTEGER_MULTIPLIER: i64 = (ENCODING_BASE
6565
* ENCODING_BASE

0 commit comments

Comments
 (0)