diff options
author | Vasiliy Petrov <saugardas@yandex.ru> | 2017-09-28 09:00:33 +0300 |
---|---|---|
committer | Vasiliy Petrov <saugardas@yandex.ru> | 2017-09-28 09:00:33 +0300 |
commit | da85cc8225531632e913676f124237b987684b81 (patch) | |
tree | 571f9cdd2bccb59359092000625f2ce5cc4b02f6 | |
parent | f0664e67c1d98afb0f7105768cf55af830f818e8 (diff) |
[haml/en] Fix mistakes in English text
-rw-r--r-- | haml.html.markdown | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/haml.html.markdown b/haml.html.markdown index fdfd0e07..bb8bdc54 100644 --- a/haml.html.markdown +++ b/haml.html.markdown @@ -188,18 +188,18 @@ $ haml input_file.haml output_file.html / Filters pass the block to another filtering program and return the result in Haml - To use filter type colon and the name of the filter + To use a filter, type a colon and the name of the filter / Markdown filter :markdown # Header - Text **inside** *block* + Text **inside** the *block* / The code above is compiled into <h1>Header</h1> -<p>Text <strong>inside</strong> <em>block</em></p> +<p>Text <strong>inside</strong> the <em>block</em></p> / Javascript filter :javascript @@ -212,7 +212,7 @@ $ haml input_file.haml output_file.html / There are many types of filters (:markdown, :javascript, :coffee, :css, :ruby and so on) - Also you can define own filter using Haml::Filters + Also you can define your own filters using Haml::Filters ``` |