From e6f8bd933a97ce4e7763194226e71047f70e2b7d Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Thu, 4 Jul 2019 17:19:29 +0200 Subject: [PATCH] - change heading to register --- Home.md | 2 +- Simple-Usage-of-Lightweight-IOC-Container.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Home.md b/Home.md index d90d7c6..5221f74 100644 --- a/Home.md +++ b/Home.md @@ -9,7 +9,7 @@ Welcome to the Lightweight IOC Container wiki! - [[Using source code|Install-Lightweight-IOC-Container#Using-source-code]] - [[Usage|Simple-Usage-of-Lightweight-IOC-Container]] - [[Instantiate container|Simple-Usage-of-Lightweight-IOC-Container#Instantiate-Container]] - - [[Install IIocInstallers|Simple-Usage-of-Lightweight-IOC-Container#Install-IIocInstallers]] + - [[Register types with the container|Simple-Usage-of-Lightweight-IOC-Container#Register-types-with-the-container]] - [[Resolving instances|Simple-Usage-of-Lightweight-IOC-Container#Resolving-Instances]] - [[Disposing Container|Simple-Usage-of-Lightweight-IOC-Container#Disposing-Container]] - Detailed documentation diff --git a/Simple-Usage-of-Lightweight-IOC-Container.md b/Simple-Usage-of-Lightweight-IOC-Container.md index 22f1d41..85225f8 100644 --- a/Simple-Usage-of-Lightweight-IOC-Container.md +++ b/Simple-Usage-of-Lightweight-IOC-Container.md @@ -8,7 +8,7 @@ The easiest way to instantiate the `IocContainer` is to create an instance of it IocContainer container = new IocContainer(); ``` -## Install `IIocInstaller`s +## Register types with the container To be able to resolve instances from the `IocContainer`, you need to register them first. There are multiple ways to accomplish this and the best solution depends on the complexity of your project.