[haml/en] Fix mistakes in English text

This commit is contained in:
Vasiliy Petrov 2017-09-28 09:00:33 +03:00
parent f0664e67c1
commit da85cc8225

View File

@ -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 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 filter
:markdown :markdown
# Header # Header
Text **inside** *block* Text **inside** the *block*
/ The code above is compiled into / The code above is compiled into
<h1>Header</h1> <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 filter
:javascript :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) 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
``` ```