From 3de420bf481bea7e28a16fddd95541d19cadcb57 Mon Sep 17 00:00:00 2001
From: Zhimin YE <Rex@Zhimins-MacBook-Pro.local>
Date: Mon, 24 Oct 2016 15:03:23 +0100
Subject: [PATCH] review

---
 public/docs/ts/latest/guide/testing.jade | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/public/docs/ts/latest/guide/testing.jade b/public/docs/ts/latest/guide/testing.jade
index d5abdb4d73..a814738cb3 100644
--- a/public/docs/ts/latest/guide/testing.jade
+++ b/public/docs/ts/latest/guide/testing.jade
@@ -1132,7 +1132,7 @@ a(href="#top").to-top 回到顶部
 
   你**可以**通过`TestBed.get`方法来从根注入器中获取服务。
   它更容易被记住,也更加简介。
-  但是它只有在Angular使用测试的根注入器的那个服务实例来注入到组件才有效。
+  但是只有在Angular使用测试的根注入器中的那个服务实例来注入到组件时,它才有效。
   幸运的是,在这个测试套件中,**唯一**的`UserService`提供商就是根测试模块,所以像下面这样调用`TestBed.get`很安全:
   
 +makeExample('testing/ts/app/welcome.component.spec.ts', 'inject-from-testbed', 'TestBed injector')(format='.')
@@ -1145,7 +1145,7 @@ a(href="#top").to-top 回到顶部
     See the section "[_Override Component Providers_](#component-override)" for a use case
     in which `inject` and `TestBed.get` do not work and you must get the service from the component's injector.
 
-    到“[**重载组件提供商**](#component-override)”查看`inject`和`TestBed.get`无效、必须从组件的注入器获取服务的用例。
+    到“[**重载组件提供商**](#component-override)”查看`inject`和`TestBed.get`无效,并且必须从组件的注入器获取服务的用例。
 
 :marked
   ### Always get the service from an injector
@@ -1158,7 +1158,7 @@ a(href="#top").to-top 回到顶部
   The `userService` instance injected into the component is a completely _different_ object, 
   a clone of the provided `userServiceStub`.
 
-  出人意料的是,你不敢引用测试代码里提供给测试模块`userServiceStub`对象。**它是行不通的!**。
+  出人意料的是,请不要引用测试代码里提供给测试模块的`userServiceStub`对象。**它是行不通的!**
   被注入组件的`userService`实例是彻底**不一样**的对象,是提供的`userServiceStub`的克隆。
 
 +makeExample('testing/ts/app/welcome.component.spec.ts', 'stub-not-injected')(format='.')