Skip to content

Commit

Permalink
[changed] Make the brand name consistent.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKVal committed May 29, 2015
1 parent 94a642c commit a4331ed
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/README.docs.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# React Bootstrap Documentation Website
# React-Bootstrap Documentation Website

This website is single page app built on
[React](http://facebook.github.io/react/), with styles and structure taken from
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# React Bootstrap Documentation Website
# React-Bootstrap Documentation Website

This website is single page app built on
[React](http://facebook.github.io/react/), with styles and structure taken from
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* React Bootstrap Documentation
* React-Bootstrap Documentation
* Special styles for presenting react-bootstrap's documentation and code examples.
* Based on the Bootstrap Documentation styles and overridden as necessary.
*/
Expand Down
2 changes: 1 addition & 1 deletion docs/src/NavMain.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const NavMain = React.createClass({
},

render() {
let brand = <Link to='home' className="navbar-brand">React Bootstrap</Link>;
let brand = <Link to='home' className="navbar-brand">React-Bootstrap</Link>;
let links = Object.keys(NAV_LINKS).map(this.renderNavItem).concat([
<li key='github-link'>
<a href='https://github.com/react-bootstrap/react-bootstrap' target='_blank'>GitHub</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/Root.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const Root = React.createClass({
};

let head = {
__html: `<title>React Bootstrap</title>
__html: `<title>React-Bootstrap</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="${this.props.assetBaseUrl}/assets/bundle.css" rel="stylesheet">
Expand Down
2 changes: 1 addition & 1 deletion ie8/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ie8 tests

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

```
npm run ie8
Expand Down
2 changes: 1 addition & 1 deletion ie8/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>React Bootstrap IE8 test page</title>
<title>React-Bootstrap IE8 test page</title>

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

0 comments on commit a4331ed

Please sign in to comment.