diff --git a/aio/content/guide/glossary.md b/aio/content/guide/glossary.md
index b047c88bc4..6d7d70dabd 100644
--- a/aio/content/guide/glossary.md
+++ b/aio/content/guide/glossary.md
@@ -1607,6 +1607,8 @@ The translation process that transforms one version of JavaScript to another ver
## tree
+## 目录树(tree)
+
In [schematics](#schematic), a virtual file system represented by the `Tree` class.
Schematic [rules](#rule) take a tree object as input, operate on them, and return a new tree object.
diff --git a/aio/content/guide/template-syntax.md b/aio/content/guide/template-syntax.md
index 53ebfa7bc0..575b41b1e1 100644
--- a/aio/content/guide/template-syntax.md
+++ b/aio/content/guide/template-syntax.md
@@ -2438,6 +2438,8 @@ You can also apply an `NgFor` to a component element, as in the following exampl
+
+
The string assigned to `*ngFor` is not a [template expression](guide/template-syntax#template-expressions). Rather,
it's a *microsyntax*—a little language of its own that Angular interprets.
The string `"let item of items"` means:
diff --git a/aio/content/tutorial/toh-pt6.md b/aio/content/tutorial/toh-pt6.md
index 542c2d27a8..15785d12a1 100644
--- a/aio/content/tutorial/toh-pt6.md
+++ b/aio/content/tutorial/toh-pt6.md
@@ -1,5 +1,7 @@
# Get data from a server
+# 从服务端获取数据
+
In this tutorial, you'll add the following data persistence features with help from
Angular's `HttpClient`.