Skip to content

Commit

Permalink
fix typo: byt -> by
Browse files Browse the repository at this point in the history
  • Loading branch information
olirice committed Feb 9, 2024
1 parent 21fff19 commit e68c77f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ pub fn validate_arg_from_type(type_: &__Type, value: &gson::Value) -> Result<gso
}
}
__Type::OrderBy(enum_) => {
let enum_name = enum_.name().expect("order byt type should have a name");
let enum_name = enum_.name().expect("order by type should have a name");
match value {
GsonValue::Absent => value.clone(),
GsonValue::Null => value.clone(),
Expand Down

0 comments on commit e68c77f

Please sign in to comment.