From da5179afc12b1e697019cf9c83c3d9ccd96308b5 Mon Sep 17 00:00:00 2001 From: Nathan Folsom Date: Sat, 13 Jan 2024 19:25:46 -0800 Subject: [PATCH] Fix typo in method name --- crates/fj-core/src/validate/sketch.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,