diff --git a/examples/todomvc-flux/js/app.js b/examples/todomvc-flux/js/app.js index a2c793a22e5..876046725dd 100644 --- a/examples/todomvc-flux/js/app.js +++ b/examples/todomvc-flux/js/app.js @@ -23,4 +23,4 @@ var TodoApp = require('./components/TodoApp.react'); React.renderComponent( , document.getElementById('todoapp') -); \ No newline at end of file +); diff --git a/examples/todomvc-flux/js/components/TodoApp.react.js b/examples/todomvc-flux/js/components/TodoApp.react.js index 803476685f8..83c3b0d7e33 100644 --- a/examples/todomvc-flux/js/components/TodoApp.react.js +++ b/examples/todomvc-flux/js/components/TodoApp.react.js @@ -55,7 +55,7 @@ var TodoApp = React.createClass({ * @return {object} */ render: function() { - return ( + return (
- ); + ); }, /** diff --git a/examples/todomvc-flux/js/stores/TodoStore.js b/examples/todomvc-flux/js/stores/TodoStore.js index cadd1b176a7..26d9bdd0d5b 100644 --- a/examples/todomvc-flux/js/stores/TodoStore.js +++ b/examples/todomvc-flux/js/stores/TodoStore.js @@ -43,8 +43,8 @@ function create(text) { /** * Update a TODO item. - * @param {string} id - * @param {object} updates An object literal containing only the data to be + * @param {string} id + * @param {object} updates An object literal containing only the data to be * updated. */ function update(id, updates) { @@ -52,9 +52,9 @@ function update(id, updates) { } /** - * Update all of the TODO items with the same object. + * Update all of the TODO items with the same object. * the data to be updated. Used to mark all TODOs as completed. - * @param {object} updates An object literal containing only the data to be + * @param {object} updates An object literal containing only the data to be * updated. */ @@ -84,7 +84,6 @@ function destroyCompleted() { } var TodoStore = merge(EventEmitter.prototype, { - /** * Tests whether all the remaining TODO items are marked as completed. * @return {booleam}