Skip to content

Commit

Permalink
Merge branch 'master' of github.com:LearnBoost/mongoose
Browse files Browse the repository at this point in the history
  • Loading branch information
aheckmann committed Oct 5, 2012
2 parents 2d7c685 + ebd3855 commit 565c874
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.jade
Expand Up @@ -70,7 +70,7 @@ html(lang='en')
kittySchema.methods.speak = function () {
var greeting = this.name
? 'Meow name is ' + this.name
: 'I don't have a name'
: 'I don\'t have a name'
console.log(greeting);
}

Expand Down
2 changes: 1 addition & 1 deletion docs/migration.jade
Expand Up @@ -256,7 +256,7 @@ block content

h4#setterorder setter order
:markdown
Values being set no longer cast until _after_ all setters have been applied. Previously the value returned from each setter was cast _before_ passing it on to the next setter. This changes allows more flexible processing of values in setters. See issue [#665](https://github.com/learnboost/mongoose/issues/665) and pull [#924](https://github.com/LearnBoost/mongoose/pull/924).
Values being set no longer cast until _after_ all setters have been applied. Previously the value returned from each setter was cast _before_ passing it on to the next setter. This change allows more flexible processing of values in setters. See issue [#665](https://github.com/learnboost/mongoose/issues/665) and pull [#924](https://github.com/LearnBoost/mongoose/pull/924).

h3#subdocs Subdocuments
:markdown
Expand Down

0 comments on commit 565c874

Please sign in to comment.