From 5a7f10964e7e75b4cb369178daa4ea8dafdbd178 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Tue, 6 Aug 2024 19:22:32 +0200 Subject: [PATCH] Update documentation of `Core` --- crates/fj-core/src/core.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/fj-core/src/core.rs b/crates/fj-core/src/core.rs index 5102c2307..d53e7d3a2 100644 --- a/crates/fj-core/src/core.rs +++ b/crates/fj-core/src/core.rs @@ -13,14 +13,14 @@ pub struct Core { } impl Core { - /// Construct an instance of `Instance` + /// Construct an instance of `Core` pub fn new() -> Self { Self { layers: Layers::default(), } } - /// Construct an instance of `Instance`, using the provided configuration + /// Construct an instance of `Core`, using the provided configuration pub fn with_validation_config(config: ValidationConfig) -> Self { let layers = Layers::with_validation_config(config); Self { layers }