Skip to content

Commit a844e81

Browse files
committed
Merge pull request #1716 from szwang/0.13.x
Fix typo in Route example
2 parents cf923d0 + 8a999a1 commit a844e81

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build/lib/components/Route.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var RouteHandler = require('./RouteHandler');
4242
* var App = React.createClass({
4343
* render: function () {
4444
* return (
45-
* <div class="application">
45+
* <div className="application">
4646
* <RouteHandler/>
4747
* </div>
4848
* );

build/umd/ReactRouter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ return /******/ (function(modules) { // webpackBootstrap
427427
* var App = React.createClass({
428428
* render: function () {
429429
* return (
430-
* <div class="application">
430+
* <div className="application">
431431
* <RouteHandler/>
432432
* </div>
433433
* );

modules/components/Route.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var RouteHandler = require('./RouteHandler');
3434
* var App = React.createClass({
3535
* render: function () {
3636
* return (
37-
* <div class="application">
37+
* <div className="application">
3838
* <RouteHandler/>
3939
* </div>
4040
* );

0 commit comments

Comments
 (0)