From ed20c8fd164f2cab85eb0621fe74eeecf74bacf5 Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Tue, 23 Aug 2016 21:46:33 +0200 Subject: [PATCH] Rewrite example to be more factually correct now --- TUTORIAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TUTORIAL.md b/TUTORIAL.md index 29b33e6..2c3834e 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -189,7 +189,7 @@ class Context : ApplicationContext { @Component public SomeLibraryClass libraryClass() { - return new SomeLibraryClass("This class needs constructor parameters so I have to register it through an application context"); + return new SomeLibraryClass("This class uses a constructor parameter of a built-in type so I have to register it through an application context"); } } ```