From 4d35dd4d4520c0cc91560373c5215a999e3ba7a8 Mon Sep 17 00:00:00 2001 From: Sekib Omazic Date: Tue, 24 Feb 2015 11:09:07 +0100 Subject: [PATCH] docs(02_directives.md): Change the description of bind property Also add attribute open to the html Closes #767 --- modules/angular2/docs/core/02_directives.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/angular2/docs/core/02_directives.md b/modules/angular2/docs/core/02_directives.md index 7756985d6d..fa7d34315b 100644 --- a/modules/angular2/docs/core/02_directives.md +++ b/modules/angular2/docs/core/02_directives.md @@ -114,7 +114,7 @@ Example of a component: selector: 'pane', | CSS selector on element bind: { | List which property need to be bound 'title': 'title', | - title mapped to component title - 'open': 'open' | - open mapped to component title + 'open': 'open' | - open attribute mapped to component's open property }, | }) | @Template({ | Template annotation @@ -154,7 +154,7 @@ class Pane { | Component controller class Example of usage: ``` - + Some text to wrap.