diff --git a/aio/content/guide/cheatsheet.md b/aio/content/guide/cheatsheet.md
index 38626c5a55..18981299d9 100644
--- a/aio/content/guide/cheatsheet.md
+++ b/aio/content/guide/cheatsheet.md
@@ -136,7 +136,7 @@ is available to declarations of this module.
Conditionally swaps the contents of the div by selecting one of the embedded templates based on the current value of conditionExpression.
Binds the presence of CSS classes on the element to the truthiness of the associated map values. The right-hand expression should return {class-name: true/false} map.
diff --git a/aio/content/guide/template-syntax.md b/aio/content/guide/template-syntax.md
index a22fd58506..d05a594230 100644
--- a/aio/content/guide/template-syntax.md
+++ b/aio/content/guide/template-syntax.md
@@ -1371,7 +1371,7 @@ _This_ section is an introduction to the common structural directives:
### NgIf
You can add or remove an element from the DOM by applying an `NgIf` directive to
-that element (called the _host elment_).
+that element (called the _host element_).
Bind the directive to a condition expression like `isActive` in this example.