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.
; } ```