chore: Fix typo

This commit is contained in:
Dmitry Dygalo 2020-06-08 23:05:17 +02:00
parent 0317d67040
commit abcfc2ad2a
No known key found for this signature in database
GPG Key ID: E2FDD4885D799724
5 changed files with 5 additions and 5 deletions

View File

@ -82,7 +82,7 @@ macro_rules! validate {
instance,
instance_number
.as_f64()
.expect("A JSON number will always be representabe as f64"),
.expect("A JSON number will always be representable as f64"),
)
}
} else {

View File

@ -82,7 +82,7 @@ macro_rules! validate {
instance,
instance_number
.as_f64()
.expect("A JSON number will always be representabe as f64"),
.expect("A JSON number will always be representable as f64"),
)
}
} else {

View File

@ -82,7 +82,7 @@ macro_rules! validate {
instance,
instance_number
.as_f64()
.expect("A JSON number will always be representabe as f64"),
.expect("A JSON number will always be representable as f64"),
)
}
} else {

View File

@ -82,7 +82,7 @@ macro_rules! validate {
instance,
instance_number
.as_f64()
.expect("A JSON number will always be representabe as f64"),
.expect("A JSON number will always be representable as f64"),
)
}
} else {

View File

@ -98,7 +98,7 @@ pub trait Validate: Send + Sync {
instance,
instance_number
.as_f64()
.expect("A JSON number will always be representabe as f64"),
.expect("A JSON number will always be representable as f64"),
)
}
}