Skip to content

Commit

Permalink
Fix jsondoclint tool
Browse files Browse the repository at this point in the history
  • Loading branch information
oli-obk committed Jan 23, 2024
1 parent 6f77f02 commit f87ddac
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/tools/jsondoclint/src/validator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ impl<'a> Validator<'a> {
Type::DynTrait(dyn_trait) => self.check_dyn_trait(dyn_trait),
Type::Generic(_) => {}
Type::Primitive(_) => {}
Type::Pat { type_, pat: _ } => self.check_type(type_),
Type::FunctionPointer(fp) => self.check_function_pointer(&**fp),
Type::Tuple(tys) => tys.iter().for_each(|ty| self.check_type(ty)),
Type::Slice(inner) => self.check_type(&**inner),
Expand Down

0 comments on commit f87ddac

Please sign in to comment.