Skip to content

Commit

Permalink
Fix comment and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
hatton committed Nov 8, 2016
1 parent 0f3f9cb commit aa1fe28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Here is the full [Parse Server guide](https://github.com/ParsePlatform/parse-ser

1. Give mongodb a blank directory to work with, and run it:

`c:\Program Files\MongoDB\Server\3.2\bin>mongod.exe --dbpath x:\temp\mongodata`
`mongod.exe --dbpath x:\temp\mongodata`

1. Start up this server:

Expand Down Expand Up @@ -48,10 +48,6 @@ Here is the full [Parse Server guide](https://github.com/ParsePlatform/parse-ser
and see the tables in the dashboard.
### Cloud Code
Normally you will only touch the "cloud code", found in cloud/main.js.
### Sample Queries
```
Expand Down
4 changes: 2 additions & 2 deletions cloud/emails.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ function sendBookSavedEmailAsync(book) {
return sendEmailAboutBookAsync(book, mail, process.env.EMAIL_BOOK_EVENT_RECIPIENT);
}

// Caller should have already filled in the from, to, subject, and content.
// This adds metedata about the book and sends off the email.
// Caller should have already filled in the from, subject, and (optionally) content.
// This adds metadata about the book and sends off the email.
function sendEmailAboutBookAsync(book, sendGridMail, toAddress) {
return new Promise(function(resolve, reject) {
try{
Expand Down

0 comments on commit aa1fe28

Please sign in to comment.