From aee4f20c00837c66d3f61e392a8f925d74c327db Mon Sep 17 00:00:00 2001 From: Cheng Lou Date: Mon, 18 Nov 2013 21:22:14 -0500 Subject: [PATCH] docs classSet semicolons missing --- docs/09.3-class-name-manipulation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/09.3-class-name-manipulation.md b/docs/09.3-class-name-manipulation.md index 2cc91b04..9db1b021 100644 --- a/docs/09.3-class-name-manipulation.md +++ b/docs/09.3-class-name-manipulation.md @@ -22,7 +22,7 @@ render: function() { classString += ' message-read'; } // 'message message-important message-read' - return
Great, I'll be there.
+ return
Great, I'll be there.
; } ``` @@ -35,9 +35,9 @@ render: function() { 'message': true, 'message-important': this.props.isImportant, 'message-read': this.props.isRead - }) + }); // same final string, but much cleaner - return
Great, I'll be there.
+ return
Great, I'll be there.
; } ```