Skip to content

Commit

Permalink
Missing an important comma
Browse files Browse the repository at this point in the history
  • Loading branch information
tedkulp committed Mar 29, 2013
1 parent 8bc46cd commit faa3f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -27,7 +27,7 @@ example = mongoose.model "Example", ExampleSchema
``` ```
If you'd like to change the name of the key properties in your document just set them when calling the plugin method with the `created` and `lastUpdated` options If you'd like to change the name of the key properties in your document just set them when calling the plugin method with the `created` and `lastUpdated` options
``` ```
ExampleSchema.plugin timestamps { created: "created_at", lastUpdated: "updated_at" } ExampleSchema.plugin timestamps, { created: "created_at", lastUpdated: "updated_at" }
``` ```


### JavaScript Example ### JavaScript Example
Expand Down

0 comments on commit faa3f3f

Please sign in to comment.