From c9f66691d2df214c880b24df72d30056f2f11b1f Mon Sep 17 00:00:00 2001 From: Eric Kelly Date: Tue, 19 May 2015 16:12:15 -0400 Subject: [PATCH] Update table format --- active/0000-stateful-helpers.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/active/0000-stateful-helpers.md b/active/0000-stateful-helpers.md index 23ab7bca75..98ecd8011a 100644 --- a/active/0000-stateful-helpers.md +++ b/active/0000-stateful-helpers.md @@ -16,11 +16,11 @@ Stateful helpers are a class-based way to define helpers. Stateful helpers: They fill a gap in Ember's current template APIs: - |has positional params|has layout|can yield template|has lifecycle, instance|can control rerender ----|---|---|---|--- -components|Yes|Yes|Yes|Yes|Yes -stateful helpers|Yes|No|Yes|Yes|Yes -function helpers|Yes|No|Yes|No|No +| | has positional params | has layout | can yield template | has lifecycle, instance | can control rerender | +|------------------|-----------------------|------------|--------------------|-------------------------|----------------------| +| components | Yes | Yes | Yes | Yes | Yes | +| stateful helpers | Yes | No | Yes | Yes | Yes | +| function helpers | Yes | No | Yes | No | No | Example usage: