Skip to content

Commit

Permalink
addressing PR Bugs and Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Jodie Doubleday committed Jul 7, 2015
1 parent 2bc0aa6 commit 1ddcba8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/examples/QuoteInline.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var example = (
<div>
<p>Gandalf, Captain of the starship enterprise said <UIToolkit.Quote type="inline" author="Gandalf" role="Captain of the Starship Enterprise" cite="The Internet" purpose="success">Use the force Harry</UIToolkit.Quote>
<p>Gandalf, Captain of the Starship Enterprise said <UIToolkit.Quote type="inline" author="Gandalf" role="Captain of the Starship Enterprise" cite="The Internet" purpose="success">Use The Force Harry</UIToolkit.Quote>
</p>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/quote/__tests__/quote-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe('QuoteComponent', function() {

});

it('should render a quote with a author', function() {
it('should render a quote with an author', function() {
var authorQuote = TestUtils.renderIntoDocument(
<QuoteComponent author="Timmy Test" />
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/quote/code/templates/blockQuoteTemplate.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = function() {
var classes = getComponentClasses('component-quote', propClasses, this.props);

return (
<blockquote className={classNames(classes)} cite={this.props.cite} itemScope itemType="http://schema.org/CreativeWork">
<blockquote className={classNames(classes)} itemScope itemType="http://schema.org/CreativeWork">
<p itemProp="text">{this.props.children}</p>
<footer itemProp="author" itemScope itemType="http://schema.org/Person">
<span itemProp="name">{this.props.author}</span>
Expand Down

0 comments on commit 1ddcba8

Please sign in to comment.