From 7612ec69d1c1e16db8500361e06ada600dc8e786 Mon Sep 17 00:00:00 2001 From: GuoYuFei Date: Sun, 9 Dec 2018 17:34:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=AD=A3=E9=94=99=E5=88=AB?= =?UTF-8?q?=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aio/content/guide/dependency-injection-in-action.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/dependency-injection-in-action.md b/aio/content/guide/dependency-injection-in-action.md index 309570b47c..af1f16ecb1 100644 --- a/aio/content/guide/dependency-injection-in-action.md +++ b/aio/content/guide/dependency-injection-in-action.md @@ -749,7 +749,7 @@ In this example, the dependency object is a string of the names of the runners u to the "Hero of the Month" contest. 这个依赖对象(由工厂函数返回的)通常是一个类实例,不过也可以是任何其它东西。 -在这个例子中,以来对象是一个表示 "月度英雄" 参赛者名称的字符串。 +在这个例子中,依赖对象是一个表示 "月度英雄" 参赛者名称的字符串。 In the example, the local state is the number `2`, the number of runners up that the component should show. The state value is passed as an argument to `runnersUpFactory()`.