Skip to content

Commit

Permalink
No caps
Browse files Browse the repository at this point in the history
  • Loading branch information
voter101 committed Jul 6, 2015
1 parent 179fea0 commit 5141d3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion koans/es6/01-HelloWorld.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var React = require("react");
// This is really simple React Component.
// It has its own name (HelloWorld) it will be used for things like error display.
//
// TASK: Render HTML span with "Hello World" text.
// Task: Render HTML span with "Hello World" text.

class HelloWorld extends React.Component {
// All components *must* have a `render` method defined.
Expand Down
4 changes: 2 additions & 2 deletions koans/es6/02-PartiesList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ var React = require("react");
// We will work on creating dynamic list of parties nearby.
// Let's see how to render a list of items.
//
// TASK #1: Add another party (or parties) to the list.
// TASK #2: Change `ul` HTML attribute `class` to 'parties-list'.
// Task #1: Add another party (or parties) to the list.
// Task #2: Change `ul` HTML attribute `class` to 'parties-list'.

class PartiesList extends React.Component {
// We can nest DOM elements delivered by React just like HTML elements.
Expand Down

0 comments on commit 5141d3e

Please sign in to comment.