Skip to content

Commit 54444cd

Browse files
author
Isaac Ramirez
committed
- fix linting issues
1 parent 6020c14 commit 54444cd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/algorithms/dijkstra-two-stack/dijkstra-two-stack.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const DijkstraTwoStack = require('./dijkstra-two-stack')
22
const { Stack, FixedCapacityStack, ResizableArrayStack } = require('../../adts')
33

4-
describe(`Unit Tests: Dijkstra's Two-Stack Algorithm for Expression Evaluation`, () => {
4+
describe('Unit Tests: Dijkstra\'s Two-Stack Algorithm for Expression Evaluation', () => {
55
describe('when using default Stack implementation', () => {
66
it('should be using Stack ADT implementation', () => {
77
expect(DijkstraTwoStack.Stack).toBe(Stack)

src/examples/d3-jsdom/rainbow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class D3JSDOM {
1414
* Returns a new DOM
1515
*/
1616
static createDOM () {
17-
return (new JSDOM(`<!DOCTYPE html><body></body>`)).window.document
17+
return (new JSDOM('<!DOCTYPE html><body></body>')).window.document
1818
}
1919

2020
/**

src/examples/test-clients/flips.client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class Flips {
5353
StdOut.println(`delta: ${Math.abs(delta)}`)
5454

5555
if (heads.tally() === tails.tally()) {
56-
StdOut.println(`It's a Tie!`)
56+
StdOut.println('It\'s a Tie!')
5757
} else {
5858
StdOut.println(`${Flips.max(heads, tails)} wins`)
5959
}

0 commit comments

Comments
 (0)