Fix typo in ifBetween helper's docs

This commit is contained in:
Dmitriy Simushev 2016-08-19 16:02:04 +00:00
parent 5d1998558e
commit fa6f4feea3

View File

@ -16,12 +16,12 @@ use Handlebars\Helper as HelperInterface;
* Conditional helper that checks if one value is between two another values.
*
* Borders of the interval are excluded from comparison. That's why in cases
* where the value under comparision is equal to one of the borders the result of
* "between" operator is false.
* where the value under comparision is equal to one of the borders the result
* of "between" operator is false.
*
* Example of usage:
* ```handlebars
* {{#ifBetween value leftBorder rightBorder}
* {{#ifBetween value leftBorder rightBorder}}
* The first argument is between borders.
* {{else}}
* The first argument is not between the borders.