From 5916976faa195aeeba7bc37576a5ae5a84fd5e4d Mon Sep 17 00:00:00 2001 From: Jeldrik Hanschke Date: Wed, 15 Aug 2018 16:24:57 +0200 Subject: [PATCH] update confusing usage example in readme Example assumed that component yields a hash before but a component after changing syntax. Since angle bracket invocation does not affect yielded value it should be the same before and after. [ci skip] --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 35d687f..4f60f6a 100644 --- a/README.md +++ b/README.md @@ -36,9 +36,9 @@ but here are a few examples of "before"/"after" to whet your appetite: ```hbs - + {{#each this.availableCountries as |country|}} - + {{country.name}} {{/each}} ```