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. * 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 * 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 * where the value under comparision is equal to one of the borders the result
* "between" operator is false. * of "between" operator is false.
* *
* Example of usage: * Example of usage:
* ```handlebars * ```handlebars
* {{#ifBetween value leftBorder rightBorder} * {{#ifBetween value leftBorder rightBorder}}
* The first argument is between borders. * The first argument is between borders.
* {{else}} * {{else}}
* The first argument is not between the borders. * The first argument is not between the borders.