-Learn more: See the [HttpClient guide](guide/http "HttpClient guide") for more information about Angular's HttpClient.
+Learn more: See the [HttpClient guide](guide/http "HttpClient guide") for more information about Angular's `HttpClient`.
diff --git a/aio/content/start/deployment.md b/aio/content/start/deployment.md
index 2eed50a886..f909cd086e 100644
--- a/aio/content/start/deployment.md
+++ b/aio/content/start/deployment.md
@@ -52,7 +52,7 @@ This will produce the files that you need to deploy.
#### Hosting the built project
-The files in the `dist/my-project-name` folder are static and can be hosted on any web server capable of serving files (node, Java, .NET) or any backend (Firebase, Google Cloud, App Engine, others).
+The files in the `dist/my-project-name` folder are static and can be hosted on any web server capable of serving files (Node, Java, .NET) or any backend (Firebase, Google Cloud, App Engine, others).
### Hosting an Angular app on Firebase
diff --git a/aio/content/start/index.md b/aio/content/start/index.md
index c648a05cdd..31e39be5c2 100644
--- a/aio/content/start/index.md
+++ b/aio/content/start/index.md
@@ -11,7 +11,7 @@ You don't need to install anything: you'll build the app using the [StackBlitz](
` to be repeated for each product in the list.
- `*ngFor` is a "structural directive". Structural directives shape or reshape the DOM's structure, typically by adding, removing, and manipulating the elements to which they are attached. Any directive with an * is a structural directive.
+
+ `*ngFor` is a "structural directive". Structural directives shape or reshape the DOM's structure, typically by adding, removing, and manipulating the elements to which they are attached. Any directive with an `*` is a structural directive.
+
1. To display the names of the products, use the interpolation syntax {{ }}. Interpolation renders a property's value as text. Inside the `
`, add an `
` heading to display the interpolation of the product's name property:
@@ -131,9 +133,9 @@ The app now has a product list and sharing feature.
In the process, you've learned to use five common features of Angular's template syntax:
* `*ngFor`
* `*ngIf`
-* Interpolation {{ }}
-* Property binding [ ]
-* Event binding ( )
+* Interpolation `{{ }}`
+* Property binding `[ ]`
+* Event binding `( )`