Skip to content

Commit

Permalink
Merge pull request #201 from manniL/fix-typo
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
atinux authored Mar 19, 2018
2 parents 798d5a4 + c101aa2 commit f9c6ea1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/client/updaters/updateTagAttributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ export default function _updateTagAttributes (options = {}) {
const { attribute } = options

/**
* updates the document's html tag attributes
* Updates the document's html tag attributes
*
* @param {Object} attrs - the new document html attributes
* @param {HTMLElement} tag - the HTMLElment tag to update with new attrs
* @param {HTMLElement} tag - the HTMLElement tag to update with new attrs
*/
return function updateTagAttributes (attrs, tag) {
const vueMetaAttrString = tag.getAttribute(attribute)
Expand Down
2 changes: 1 addition & 1 deletion src/client/updaters/updateTitle.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default function _updateTitle () {
/**
* updates the document title
* Updates the document title
*
* @param {String} title - the new title of the document
*/
Expand Down
2 changes: 1 addition & 1 deletion src/server/generators/tagGenerator.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function _tagGenerator (options = {}) {
// these tag types will have content inserted
const closed = ['noscript', 'script', 'style'].indexOf(type) === -1

// generate tag exactly without any other redundance attribute
// generate tag exactly without any other redundant attribute
const observeTag = tag.once
? ''
: `${attribute}="true" `
Expand Down

0 comments on commit f9c6ea1

Please sign in to comment.