Skip to content

Commit

Permalink
Update copyright and fix typos in tests
Browse files Browse the repository at this point in the history
* Set copyright to be in my personal name since this is open source.
* Fix spelling errors in file names and test specs.
  • Loading branch information
l8on committed Jan 13, 2016
1 parent 455ac23 commit 367efad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 Lever
Copyright (c) 2015 Leighton Wallace

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Run `npm run compile` to compile the source into javascript files before submitt

# MIT Licence

Copyright (c) 2015 Lever
Copyright (c) 2015 Leighton Wallace

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions test/playerHtml.test.coffee → test/planerHtml.test.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe 'planer#extractFromHtml', ->
msgBody = ''
expect(planer.extractFromHtml(msgBody, @dom)).to.equal('')

it 'should return a the text of a message with spliiter inside blockqouote', ->
it 'should return a the text of a message with splitter inside blockqouote', ->
msgBody = """Reply
<blockquote>
Expand All @@ -29,7 +29,7 @@ describe 'planer#extractFromHtml', ->
</blockquote>"""
expect(planer.extractFromHtml(msgBody, @dom)).to.equal('<html><body>Reply\n</body></html>')

it 'should return a the text of a message with spliiter outside blockqouote', ->
it 'should return a the text of a message with splitter outside blockqouote', ->
msgBody = """Reply
<div>
Expand Down
1 change: 0 additions & 1 deletion test/planerText.test.coffee
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{expect} = require 'chai'
jsdom = require 'jsdom'
planer = require '../src/planer'

describe 'planer#extractFromPlain', ->
Expand Down

0 comments on commit 367efad

Please sign in to comment.