From 629a0c29a498a3852ca31ef1a4e9059ce5c9bde3 Mon Sep 17 00:00:00 2001 From: Kees de Kooter Date: Tue, 9 Jul 2024 11:01:26 +0200 Subject: [PATCH] Corrected typos in code samples --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 62e599a..cc676e3 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 @@ -773,4 +773,4 @@ true, true, 0, #### Contribution -Contributions are more than welcome! \ No newline at end of file +Contributions are more than welcome!