Skip to content

Commit a4331ed

Browse files
committed
[changed] Make the brand name consistent.
1 parent 94a642c commit a4331ed

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docs/README.docs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# React Bootstrap Documentation Website
1+
# React-Bootstrap Documentation Website
22

33
This website is single page app built on
44
[React](http://facebook.github.io/react/), with styles and structure taken from

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# React Bootstrap Documentation Website
1+
# React-Bootstrap Documentation Website
22

33
This website is single page app built on
44
[React](http://facebook.github.io/react/), with styles and structure taken from

docs/assets/style.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* React Bootstrap Documentation
2+
* React-Bootstrap Documentation
33
* Special styles for presenting react-bootstrap's documentation and code examples.
44
* Based on the Bootstrap Documentation styles and overridden as necessary.
55
*/

docs/src/NavMain.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const NavMain = React.createClass({
2424
},
2525

2626
render() {
27-
let brand = <Link to='home' className="navbar-brand">React Bootstrap</Link>;
27+
let brand = <Link to='home' className="navbar-brand">React-Bootstrap</Link>;
2828
let links = Object.keys(NAV_LINKS).map(this.renderNavItem).concat([
2929
<li key='github-link'>
3030
<a href='https://github.com/react-bootstrap/react-bootstrap' target='_blank'>GitHub</a>

docs/src/Root.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const Root = React.createClass({
4545
};
4646

4747
let head = {
48-
__html: `<title>React Bootstrap</title>
48+
__html: `<title>React-Bootstrap</title>
4949
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5050
<meta name="viewport" content="width=device-width, initial-scale=1.0">
5151
<link href="${this.props.assetBaseUrl}/assets/bundle.css" rel="stylesheet">

ie8/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ie8 tests
22

3-
A simple page with several React Bootstrap components for testing in ie8.
3+
A simple page with several React-Bootstrap components for testing in ie8.
44

55
```
66
npm run ie8

ie8/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<title>React Bootstrap IE8 test page</title>
7+
<title>React-Bootstrap IE8 test page</title>
88

99
<!-- Bootstrap -->
1010
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">

0 commit comments

Comments
 (0)