From dfcebc905b81c3d9c987f7b3ac6e992f1e8710c6 Mon Sep 17 00:00:00 2001 From: Nicolas Landucci <74741743+nicolandu@users.noreply.github.com> Date: Fri, 12 Jul 2024 07:35:49 -0400 Subject: [PATCH] Minor typo fixes (#596) Thanks @nicolandu ! --- rust/src/consts.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/src/consts.rs b/rust/src/consts.rs index aeef5b90..866f7916 100644 --- a/rust/src/consts.rs +++ b/rust/src/consts.rs @@ -48,7 +48,7 @@ pub const GRID_ROWS: usize = 5; // Minimum length of a code that can be shortened. pub const MIN_TRIMMABLE_CODE_LEN: usize = 6; -// What to multiple latitude degrees by to get an integer value. There are three pairs representing +// What to multiply latitude degrees by to get an integer value. There are three pairs representing // decimal digits, and five digits in the grid. pub const LAT_INTEGER_MULTIPLIER: i64 = (ENCODING_BASE * ENCODING_BASE @@ -59,7 +59,7 @@ pub const LAT_INTEGER_MULTIPLIER: i64 = (ENCODING_BASE * GRID_ROWS * GRID_ROWS) as i64; -// What to multiple longitude degrees by to get an integer value. There are three pairs representing +// What to multiply longitude degrees by to get an integer value. There are three pairs representing // decimal digits, and five digits in the grid. pub const LNG_INTEGER_MULTIPLIER: i64 = (ENCODING_BASE * ENCODING_BASE