Merge pull request #50 from marktani/master

Fixed two typos.
This commit is contained in:
Alexander Shelepenok 2018-02-03 21:32:43 +03:00 committed by GitHub
commit 35c31a25fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ class TagTemplateDetails extends React.Component {
<div className="content__inner">
<div className="page">
<h1 className="page__title">
All Posts tagget as &quot;{tagTitle}&quot;
All Posts tagged as &quot;{tagTitle}&quot;
</h1>
<div className="page__body">
{items}

View File

@ -10,7 +10,7 @@ class TagTemplate extends React.Component {
return (
<div>
<Helmet title={`All Posts tagget as "${tag}" - ${title}`} />
<Helmet title={`All Posts tagged as "${tag}" - ${title}`} />
<Sidebar {...this.props} />
<TagTemplateDetails {...this.props} />
</div>