Skip to content

Commit

Permalink
err... whitespace?
Browse files Browse the repository at this point in the history
  • Loading branch information
constantology committed Sep 7, 2012
1 parent d45817c commit 8798db0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion m8.js
Expand Up @@ -385,7 +385,7 @@

defs( ( __lib__ = expose( __lib__, Name, PACKAGE ) ), {
// properties
ENV : ENV, global : { value : root }, modes : { value : modes },
ENV : ENV, global : { value : root }, modes : { value : modes },
// methods
bless : bless, coerce : coerce, copy : copy, def : def, defs : defs,
describe : describe, empty : empty, exists : exists, expose : expose, got : got,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -29,5 +29,5 @@
"scripts" : {
"test" : "mocha -c --ignore-leaks -R spec -u tdd ./test"
},
"version" : "0.2.3"
"version" : "0.2.4"
}
2 changes: 1 addition & 1 deletion src/expose.js
Expand Up @@ -2,7 +2,7 @@

defs( ( __lib__ = expose( __lib__, Name, PACKAGE ) ), {
// properties
ENV : ENV, global : { value : root }, modes : { value : modes },
ENV : ENV, global : { value : root }, modes : { value : modes },
// methods
bless : bless, coerce : coerce, copy : copy, def : def, defs : defs,
describe : describe, empty : empty, exists : exists, expose : expose, got : got,
Expand Down
2 changes: 1 addition & 1 deletion test/m8.test.js
Expand Up @@ -312,7 +312,7 @@ suite( 'm8', function() {

expect( function( one ){}.__name__ ).to.equal( 'anonymous' );
expect( function foo( one, two, three ){}.__name__ ).to.equal( 'foo' );
expect( m8.obj.__name__ ).to.equal( 'obj' );
expect( m8.coerce.__name__ ).to.equal( 'coerce' );
expect( m8.nativeType.__name__ ).to.equal( 'nativeType' );
expect( Test.__name__ ).to.equal( 'Test' );
expect( Test.prototype.get.__name__ ).to.equal( 'get' );
Expand Down

0 comments on commit 8798db0

Please sign in to comment.