Skip to content

Commit

Permalink
Clean up code
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Feb 6, 2021
1 parent 7234b1a commit 7cba504
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/list.test.ts
Expand Up @@ -16,7 +16,7 @@ it('space() checks functions', () => {
expect(list.space('f( )) a( () )')).toEqual(['f( ))', 'a( () )'])
})

it('space() doesn\'t split on escaped spaces', () => {
it('space() does not split on escaped spaces', () => {
expect(list.space('a\\ b')).toEqual(['a\\ b'])
})

Expand All @@ -41,7 +41,7 @@ it('comma() checks functions', () => {
expect(list.comma('f(,)), a(,(),)')).toEqual(['f(,))', 'a(,(),)'])
})

it('comma() doesn\'t split on escaped commas', () => {
it('comma() does not split on escaped commas', () => {
expect(list.comma('a\\, b')).toEqual(['a\\, b'])
})

Expand Down

0 comments on commit 7cba504

Please sign in to comment.