Skip to content

Commit

Permalink
Merge pull request rmurphey#4 from jefffederman/jf-object-test
Browse files Browse the repository at this point in the history
Switched order of greeting and name in sayIt()
  • Loading branch information
rmurphey committed Apr 12, 2012
2 parents bdaff6d + 0b213ba commit 07dcd0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/app/objects.js
Expand Up @@ -9,8 +9,8 @@ define([ 'use!underscore' ], function(_) {
name : 'Matt', name : 'Matt',
greeting : 'Hello', greeting : 'Hello',
sayIt : function() { sayIt : function() {
return this.name + ', ' + return this.greeting + ', ' +
this.greeting + '!'; this.name + '!';
} }
}; };


Expand Down

0 comments on commit 07dcd0a

Please sign in to comment.