From 0b7957dfeacc879939abd4e7e5a7a9faa8d63eba Mon Sep 17 00:00:00 2001 From: Lichuan Shang Date: Tue, 25 May 2021 18:20:41 +0800 Subject: [PATCH] fix: typo then => than --- src/validators/int_validators.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/validators/int_validators.rs b/src/validators/int_validators.rs index af312f31..2f5a7169 100644 --- a/src/validators/int_validators.rs +++ b/src/validators/int_validators.rs @@ -26,9 +26,9 @@ impl InputValueValidator for IntRange { } } -/// Integer less then validator +/// Integer less than validator pub struct IntLessThan { - /// Less then this value. + /// Less than this value. pub value: i64, } @@ -48,9 +48,9 @@ impl InputValueValidator for IntLessThan { } } -/// Integer greater then validator +/// Integer greater than validator pub struct IntGreaterThan { - /// Greater then this value. + /// Greater than this value. pub value: i64, }