From 2a27e5d3e49e4f5411b3e75d5049a1c90b147638 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 23 Nov 2011 08:25:09 -0600 Subject: [PATCH] Tweak comment in ioc class. --- laravel/ioc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/ioc.php b/laravel/ioc.php index 9adaea80..34e8f63c 100644 --- a/laravel/ioc.php +++ b/laravel/ioc.php @@ -67,7 +67,7 @@ public static function registered($name) * Register an object as a singleton. * * Singletons will only be instantiated the first time they are resolved. - * On subsequent requests for the object, the original instance will be returned. + * The same instance will be returned on subsequent requests. * * @param string $name * @param Closure $resolver