diff options
author | HampusM <hampus@hampusmat.com> | 2023-08-02 19:17:54 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-08-02 19:17:54 +0200 |
commit | 14f1fc1837675e1771e220f848b46213462ae804 (patch) | |
tree | 7083a69e73693a6d274a1e9c164a4e9f7a077336 /src/di_container/asynchronous | |
parent | 221b07a16177e4780951c256b1f9d349a1146d1f (diff) |
docs: fix wrong quotes in binding configurators
Diffstat (limited to 'src/di_container/asynchronous')
-rw-r--r-- | src/di_container/asynchronous/binding/scope_configurator.rs | 2 | ||||
-rw-r--r-- | src/di_container/asynchronous/binding/when_configurator.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/di_container/asynchronous/binding/scope_configurator.rs b/src/di_container/asynchronous/binding/scope_configurator.rs index eaedcbe..023bb5e 100644 --- a/src/di_container/asynchronous/binding/scope_configurator.rs +++ b/src/di_container/asynchronous/binding/scope_configurator.rs @@ -12,7 +12,7 @@ use crate::interfaces::async_injectable::AsyncInjectable; use crate::provider::r#async::{AsyncSingletonProvider, AsyncTransientTypeProvider}; use crate::ptr::ThreadsafeSingletonPtr; -/// Scope configurator for a binding for type 'Interface' inside a [`IAsyncDIContainer`]. +/// Scope configurator for a binding for type `Interface` inside a [`IAsyncDIContainer`]. /// /// [`IAsyncDIContainer`]: crate::di_container::asynchronous::IAsyncDIContainer pub struct AsyncBindingScopeConfigurator< diff --git a/src/di_container/asynchronous/binding/when_configurator.rs b/src/di_container/asynchronous/binding/when_configurator.rs index c1bb8c5..39e1807 100644 --- a/src/di_container/asynchronous/binding/when_configurator.rs +++ b/src/di_container/asynchronous/binding/when_configurator.rs @@ -9,7 +9,7 @@ use crate::dependency_history::IDependencyHistory; use crate::di_container::asynchronous::IAsyncDIContainer; use crate::errors::async_di_container::AsyncBindingWhenConfiguratorError; -/// When configurator for a binding for type 'Interface' inside a [`IAsyncDIContainer`]. +/// When configurator for a binding for type `Interface` inside a [`IAsyncDIContainer`]. /// /// [`IAsyncDIContainer`]: crate::di_container::asynchronous::IAsyncDIContainer pub struct AsyncBindingWhenConfigurator<Interface, DIContainerType, DependencyHistoryType> |