Fixed two typos.

This commit is contained in:
Nilan Marktanner 2018-02-03 19:09:59 +01:00
parent ee8abe910e
commit 7c696b3da2
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>