summaryrefslogtreecommitdiffhomepage
path: root/haml.html.markdown
diff options
context:
space:
mode:
authorVasiliy Petrov <saugardas@yandex.ru>2017-09-28 09:00:33 +0300
committerVasiliy Petrov <saugardas@yandex.ru>2017-09-28 09:00:33 +0300
commitda85cc8225531632e913676f124237b987684b81 (patch)
tree571f9cdd2bccb59359092000625f2ce5cc4b02f6 /haml.html.markdown
parentf0664e67c1d98afb0f7105768cf55af830f818e8 (diff)
[haml/en] Fix mistakes in English text
Diffstat (limited to 'haml.html.markdown')
-rw-r--r--haml.html.markdown8
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
```