Skip to content

Commit

Permalink
Fix typo in method name
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-folsom committed Jan 14, 2024
1 parent 3d39746 commit da5179a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/fj-core/src/validate/sketch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ impl Validate for Sketch {
config: &ValidationConfig,
errors: &mut Vec<ValidationError>,
) {
SketchValidationError::check_obect_references(self, config, errors);
SketchValidationError::check_object_references(self, config, errors);
}
}

Expand All @@ -24,7 +24,7 @@ pub enum SketchValidationError {
}

impl SketchValidationError {
fn check_obect_references(
fn check_object_references(
sketch: &Sketch,
_config: &ValidationConfig,
errors: &mut Vec<ValidationError>,
Expand Down

0 comments on commit da5179a

Please sign in to comment.