diff --git a/crates/fj-core/src/validate/sketch.rs b/crates/fj-core/src/validate/sketch.rs index 9b10d2720d..4654c58c85 100644 --- a/crates/fj-core/src/validate/sketch.rs +++ b/crates/fj-core/src/validate/sketch.rs @@ -11,7 +11,7 @@ impl Validate for Sketch { config: &ValidationConfig, errors: &mut Vec, ) { - SketchValidationError::check_obect_references(self, config, errors); + SketchValidationError::check_object_references(self, config, errors); } } @@ -24,7 +24,7 @@ pub enum SketchValidationError { } impl SketchValidationError { - fn check_obect_references( + fn check_object_references( sketch: &Sketch, _config: &ValidationConfig, errors: &mut Vec,