diff --git a/aio/content/guide/architecture-modules.md b/aio/content/guide/architecture-modules.md
index 95b0c942f9..f18a55e227 100644
--- a/aio/content/guide/architecture-modules.md
+++ b/aio/content/guide/architecture-modules.md
@@ -146,7 +146,7 @@ JavaScript 中,每个*文件*是一个模块,文件中定义的所有对象
Angular loads as a collection of JavaScript modules. You can think of them as library modules. Each Angular library name begins with the `@angular` prefix. Install them with the `npm` package manager and import parts of them with JavaScript `import` statements.
Angular 会作为一组 JavaScript 模块进行加载,你可以把它们看成库模块。每个 Angular 库的名称都带有 `@angular` 前缀。
-使用 `npm` 包管理器安装它们,并使用 JavaScript 的 `import` 语句导入其中的各个部分。
+使用 `npm` 包管理器安装 Angular 的库,并使用 JavaScript 的 `import` 语句导入其中的各个部分。
diff --git a/aio/content/guide/forms.md b/aio/content/guide/forms.md
index 7e992e3d88..70278c8201 100644
--- a/aio/content/guide/forms.md
+++ b/aio/content/guide/forms.md
@@ -272,7 +272,7 @@ nothing to distinguish it from any component you've written before.
Understanding this component requires only the Angular concepts covered in previous pages.
-只需要前面章节中学过的概念,就可以完全理解这个组件:
+只要用前面章节中学过的 Angular 概念,就可以完全理解这个组件:
* The code imports the Angular core library and the `Hero` model you just created.
@@ -628,8 +628,8 @@ Defining a `name` attribute is a requirement when using `[(ngModel)]` in combina
Each `FormControl` is registered under the name you assigned to the `name` attribute.
Read more in the previous section, [The NgForm directive](guide/forms#ngForm).
- 在内部,Angular 创建了一些 `FormControl`,并把它们注册到 `NgForm` 指令,再将该指令附加到 `