Skip to content

Commit

Permalink
DEVDOCS-4558: [update] Handlebars helpers, specify inclusivity of for…
Browse files Browse the repository at this point in the history
…loop end number (#1670)

Co-authored-by: Chris Hayes <[email protected]>
Co-authored-by: Sarah Riehl <[email protected]>
  • Loading branch information
3 people authored and slsriehl committed Nov 4, 2022
1 parent b54b412 commit 8101d30
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The following table contains BigCommerce's open source [Handlebars helpers](http
| [all](#all) | logic | Renders block if **all** params are true. |
| [compare](#compare) | logic | Compares values with JavaScript operators, including `typeof`. |
| [contains](#contains) | logic | Renders block if first param is in second param. |
| [for](#for) | logic | Iterates for range `a` to `b`. |
| [for](#for) | logic | Iterates for range `a` to `b`, inclusive of `b`. |
| [if](#if) | logic | Renders block if statement is true. |
| [or](#or) | logic | Renders block if one or more parameters evaluate to true. |
| [unless](#unless) | logic | Renders block if a statement evaluates to false. |
Expand Down Expand Up @@ -879,7 +879,7 @@ Repeats block for a specified range from index `a` to index `b`. To protect agai
#### Parameters

- `a` {Number}: Starting number.
- `b` {Number}: Ending number.
- `b` {Number}: Ending number. (Inclusive)

#### Example

Expand Down

0 comments on commit 8101d30

Please sign in to comment.