From cf7043a7238d42ea2b1df2ecfb89887ae3921cf2 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Sat, 5 Nov 2022 09:12:35 +0100 Subject: [PATCH] Un-hide method in docs --- crates/fj/src/models/host.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/fj/src/models/host.rs b/crates/fj/src/models/host.rs index 2f4c2f6c6..cf9fb4556 100644 --- a/crates/fj/src/models/host.rs +++ b/crates/fj/src/models/host.rs @@ -7,7 +7,6 @@ pub trait Host { /// This is mainly for more advanced use cases (e.g. when you need to close /// over extra state to load the model). For simpler models, you probably /// want to use [`HostExt::register_model()`] instead. - #[doc(hidden)] fn register_boxed_model(&mut self, model: Box); }