Skip to content

Commit

Permalink
Fix spelling in task readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ascandella committed Feb 14, 2017
1 parent 7a7a3ca commit 2ae06cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/task/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func updateCache(ctx context.Context, input string, results string) error {
}
```

The async task module is a singleton and a service can intialize only one at this time.
The async task module is a singleton and a service can initialize only one at this time.
Users are free to define their own backends and encodings for message passing.

## Async function requirements
Expand All @@ -61,4 +61,4 @@ For the function to be invoked asynchronously, the following criteria must be me
* The function should return only one value, which should be an error. The caller does not receive a
return value from the called function.
* The function should not take variadic arguments as input (support for this is coming soon).
* If functions take in an interface, the implementation must be registered on startup.
* If functions take in an interface, the implementation must be registered on startup.
2 changes: 1 addition & 1 deletion modules/task/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
// return nil
// }
//
// The async task module is a singleton and a service can intialize only one at this time.
// The async task module is a singleton and a service can initialize only one at this time.
// Users are free to define their own backends and encodings for message passing.
//
//
Expand Down

0 comments on commit 2ae06cc

Please sign in to comment.