From e38f4dc58377b50b7e6098930beda72a79b0efaf Mon Sep 17 00:00:00 2001 From: Zhicheng WANG Date: Sun, 6 Jan 2019 08:52:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=96=87=E5=AD=97=E5=BE=AE=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aio/content/guide/architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/architecture.md b/aio/content/guide/architecture.md index fc36ac5ba2..ca7f8f90c3 100644 --- a/aio/content/guide/architecture.md +++ b/aio/content/guide/architecture.md @@ -22,7 +22,7 @@ NgModule 会把相关的代码收集到一些功能集中。Angular 应用就是 * Components use *services*, which provide specific functionality not directly related to views. Service providers can be *injected* into components as *dependencies*, making your code modular, reusable, and efficient. 组件使用*服务*。服务会提供那些与视图不直接相关的功能。服务提供商可以作为*依赖*被*注入*到组件中, - 这能让你的代码更加模块化、可复用,而且高效。 + 这能让你的代码更加模块化、更加可复用、更加高效。 Both components and services are simply classes, with *decorators* that mark their type and provide metadata that tells Angular how to use them.