From db96c6f6c27853d9fdc2773be520c7fa3db7e5a2 Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Mon, 2 Sep 2019 08:54:15 +0200 Subject: [PATCH] - fix typo --- IIocInstaller.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IIocInstaller.md b/IIocInstaller.md index e1cf473..7607ca1 100644 --- a/IIocInstaller.md +++ b/IIocInstaller.md @@ -44,7 +44,7 @@ public AssemblyInstaller(Assembly assembly) if (!typeof(IIocInstaller).IsAssignableFrom(type)) continue; - Installers.Add((IIovInstaller) Activator.CreateInstance(type));; + Installers.Add((IIocInstaller) Activator.CreateInstance(type));; } } ```