diff --git a/crates/gpui/src/app.rs b/crates/gpui/src/app.rs index 04cb010ed68526aa838597b562f160658160aeb1..956cf3f43550083a964c68f3fa9835f3c98572c6 100644 --- a/crates/gpui/src/app.rs +++ b/crates/gpui/src/app.rs @@ -1605,9 +1605,10 @@ impl App { impl AppContext for App { type Result = T; - /// Build an entity that is owned by the application. The given function will be invoked with - /// a `Context` and must return an object representing the entity. A `Entity` handle will be returned, - /// which can be used to access the entity in a context. + /// Builds an entity that is owned by the application. + /// + /// The given function will be invoked with a [`Context`] and must return an object representing the entity. An + /// [`Entity`] handle will be returned, which can be used to access the entity in a context. fn new( &mut self, build_entity: impl FnOnce(&mut Context<'_, T>) -> T,