Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
fixed linting errors before everything else
Browse files Browse the repository at this point in the history
  • Loading branch information
mustardamus committed Nov 24, 2016
1 parent 2682431 commit c003f71
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/js/content.js
Expand Up @@ -64,7 +64,7 @@ module.exports = class Content {
}
}

return templates.signatureHeader(entry.type, entry.name, args, entry.return)
return templates.signatureHeader(entry.type, entry.name, args, entry.return)
}

getArgumentTemplate (argument) {
Expand Down
2 changes: 1 addition & 1 deletion src/js/navigation.js
Expand Up @@ -11,7 +11,7 @@ module.exports = class Navigation {
this.categoriesClass = 'categories'
this.categoryClass = 'category'
this.entriesClass = 'entries'
this.entryClass = 'entry'
this.entryClass = 'entry'
}

render (entries) {
Expand Down
2 changes: 1 addition & 1 deletion test/frontend/content_spec.js
Expand Up @@ -4,7 +4,7 @@ require('babel-polyfill') // needed with PhantomJS+ES2015

const $ = require('jquery')
const assert = require('assert')
const sinon = require('sinon')
// const sinon = require('sinon')

const actions = { loadEntry: function () {} }
const $el = $('<div/>')
Expand Down
2 changes: 1 addition & 1 deletion test/frontend/navigation_spec.js
Expand Up @@ -36,7 +36,7 @@ describe('Navigation Class', () => {
let $li1 = $ul.children().eq(0)
let $li1Ul = $li1.children('ul.categories')
let $li1UlLi1 = $li1Ul.children().eq(0)
let $li1Entries = $li1UlLi1.children('.entries')
let $li1Entries = $li1UlLi1.children('.entries')
let slug = categories[0].categories[0].slug

assert.equal($ul.children().length, categories.length)
Expand Down

0 comments on commit c003f71

Please sign in to comment.