From 7a8c8df41c0a54257736ceab322907a3010ac525 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=9C=E6=96=B9=E5=AD=A4=E6=80=9D=E5=AD=90=EF=BC=88Pari?= =?UTF-8?q?s=C2=B7QianSen=EF=BC=89?= Date: Fri, 27 Jun 2014 01:20:31 +0800 Subject: [PATCH] small mistakes in service locator guide. besides, what is `app\components\SolrService`? --- docs/guide/concept-service-locator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/concept-service-locator.md b/docs/guide/concept-service-locator.md index cc9c3e1e0e..ad72033cb2 100644 --- a/docs/guide/concept-service-locator.md +++ b/docs/guide/concept-service-locator.md @@ -34,7 +34,7 @@ $locator->set('db', [ 'password' => '', ]); -// register "db" using an anonymous function that builds a component +// register "search" using an anonymous function that builds a component $locator->set('search', function () { return new app\components\SolrService; });