Skip to content

chore: Fix typo in comments #679

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 25, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/rules/no-v-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
const utils = require('../utils')

// ------------------------------------------------------------------------------
// Rule Definitionutilu
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whaat happened here 🙈 😂

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no clue but editor was screaming at me on this file xd

// Rule Definition
// ------------------------------------------------------------------------------

module.exports = {
Expand Down
8 changes: 4 additions & 4 deletions lib/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ module.exports = {

/**
* Check whether the given name is a MathML element or not.
* @param {ASTNode} name The node to check.
* @param {ASTNode} node The node to check.
* @returns {boolean} `true` if the node is a MathML element.
*/
isMathMLElementNode (node) {
Expand Down Expand Up @@ -307,7 +307,7 @@ module.exports = {

/**
* Check whether the given attribute node is a binding
* @param {ASTNode} name The attribute to check.
* @param {ASTNode} attribute The attribute to check.
* @returns {boolean}
*/
isBindingAttribute (attribute) {
Expand All @@ -327,7 +327,7 @@ module.exports = {

/**
* Parse member expression node to get array with all of its parts
* @param {ASTNode} MemberExpression
* @param {ASTNode} node MemberExpression
* @returns {Array}
*/
parseMemberExpression (node) {
Expand Down Expand Up @@ -605,7 +605,7 @@ module.exports = {
/**
* Return generator with all properties
* @param {ASTNode} node Node to check
* @param {string} groupName Name of parent group
* @param {Set} groups Name of parent group
*/
* iterateProperties (node, groups) {
const nodes = node.properties.filter(p => p.type === 'Property' && groups.has(this.getStaticPropertyName(p.key)))
Expand Down