Skip to content

Commit

Permalink
–
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiebits committed Aug 17, 2018
1 parent 461394c commit 0e4f45f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class Home extends Component {
return (
<div css={{width: '100%'}}>
<TitleAndMetaTags
title="React - A JavaScript library for building user interfaces"
title="React &ndash; A JavaScript library for building user interfaces"
ogUrl={createOgUrl('index.html')}
/>
<header
Expand Down
2 changes: 1 addition & 1 deletion src/templates/blog.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const Blog = ({data, location}) => (
ogDescription={data.markdownRemark.excerpt}
markdownRemark={data.markdownRemark}
sectionList={toSectionList(data.allMarkdownRemark)}
titlePostfix=" - React Blog"
titlePostfix=" &ndash; React Blog"
/>
);

Expand Down
2 changes: 1 addition & 1 deletion src/templates/community.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Community = ({data, location}) => (
location={location}
markdownRemark={data.markdownRemark}
sectionList={sectionListCommunity}
titlePostfix=" - React"
titlePostfix=" &ndash; React"
/>
);

Expand Down
2 changes: 1 addition & 1 deletion src/templates/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Docs = ({data, location}) => (
location={location}
markdownRemark={data.markdownRemark}
sectionList={sectionListDocs}
titlePostfix=" - React"
titlePostfix=" &ndash; React"
/>
);

Expand Down
2 changes: 1 addition & 1 deletion src/templates/tutorial.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Tutorial = ({data, location}) => {
location={location}
markdownRemark={data.markdownRemark}
sectionList={sectionListTutorial}
titlePostfix=" - React"
titlePostfix=" &ndash; React"
/>
);
};
Expand Down

0 comments on commit 0e4f45f

Please sign in to comment.