diff --git a/README.md b/README.md
index cc93d09..73f02d4 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ A style guide for the [HTML Template Language](https://docs.adobe.com/docs/en/ht
## 2. Comments
- - [2.1](#2.1) **Always use HTL comments.**
+ - [2.1](#2.1) **Use HTL comments.**
Normal HTML comments get rendered to the final markup. To keep the DOM clean, always use HTL comments over normal HTML comments.
@@ -60,7 +60,7 @@ A style guide for the [HTML Template Language](https://docs.adobe.com/docs/en/ht
## 3. Expression language
- - [3.1](#3.1) **Only set a display context if necessary**
+ - [3.1](#3.1) **Set a display context only if necessary**
In most cases you can leave out the display context, because it is determined automatically.
@@ -72,7 +72,7 @@ A style guide for the [HTML Template Language](https://docs.adobe.com/docs/en/ht
```
- - [3.2](#3.2) **Always use the safest possible display context.**
+ - [3.2](#3.2) **Use the safest possible display context.**
From the following list of contexts, always choose the one closest to the top that fits your needs:
`number`: For whole numbers (in HTML, JS or CSS)
@@ -106,7 +106,7 @@ A style guide for the [HTML Template Language](https://docs.adobe.com/docs/en/ht
```
- - [3.3](#3.3) **Don't write unnecessary expressions for literals.**
+ - [3.3](#3.3) **Avoid writting unnecessary expressions for literals.**
It might sound obvious, but an expression with just a string literal inside equals just that string literal.
@@ -127,9 +127,9 @@ A style guide for the [HTML Template Language](https://docs.adobe.com/docs/en/ht
## 4. Block statements
- - [4.1](#4.1) **Use the SLY tag name for all elements that are not part of the markup.**
+ - [4.1](#4.1) **Use the `SlY` tag name for all elements that are not part of the markup.**
- HTML elements with the tag name SLY are automatically getting unwrapped and will not be part of the final markup.
+ HTML elements with the tag name `SLY` are automatically getting unwrapped and will not be part of the final markup.
```html
@@ -155,7 +155,7 @@ A style guide for the [HTML Template Language](https://docs.adobe.com/docs/en/ht
```
- **IMPORTANT** - The SLY element will not automatically unwrap itself if you use HTL 1.0 (AEM 6.0). In that case, you still have to add the "data-sly-unwrap" attribute.
+ **IMPORTANT** - The `SLY` element will not automatically unwrap itself if you use HTL 1.0 (AEM 6.0). In that case, you still have to add the `data-sly-unwrap` attribute.
```html
@@ -165,9 +165,9 @@ A style guide for the [HTML Template Language](https://docs.adobe.com/docs/en/ht
${event.year}
``` - - [4.10](#4.10) **Always define your templates in a separate file.** + - [4.10](#4.10) **Define your templates in a separate file.** It's cleaner to create separate files for your template markup, so your HTL scripts will not get cluttered.