Skip to content

Commit

Permalink
Merge pull request salesforce#28 from kdekooter/master
Browse files Browse the repository at this point in the history
Corrected typos in code samples
  • Loading branch information
theodorejb committed Dec 13, 2024
2 parents d3a0552 + 629a0c2 commit d0cd0c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ You can use the if helper to conditionally render a block. If its argument retur
```html
{{#if isActive}}
This part will be shown if it is active
{{#else if isValid}}
{{else if isValid}}
This part will be shown if it is valid
{{else}}
This part will be shown if isActive and isValid are both "falsy" values
Expand Down Expand Up @@ -454,7 +454,7 @@ $model = [
```html
{{#if isActive}}
This part will be shown if it is active
{{#else if isValid}}
{{else if isValid}}
This part will be shown if it is valid
{{else}}
This part will be shown if isActive and isValid are both "falsy" values
Expand Down Expand Up @@ -773,4 +773,4 @@ true, true, 0,

#### Contribution

Contributions are more than welcome!
Contributions are more than welcome!

0 comments on commit d0cd0c6

Please sign in to comment.