diff options
author | Michael Lumish <mlumish@google.com> | 2016-09-09 10:56:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-09 10:56:40 -0700 |
commit | 7cc285a52fc4f1001491cd05d93ad4ac71c96aeb (patch) | |
tree | ea17af2984bc7f90adf56f8b3b5ecba170e31ee8 | |
parent | eeb21d1fae572bcfb75ca25ff344047b28a421a2 (diff) | |
parent | b72e78e23ca5ee155198a1ca0df9108490dcfbf6 (diff) |
Merge pull request #8021 from hacfi/node_typo
Fix typo in node.js README
-rw-r--r-- | src/node/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node/README.md b/src/node/README.md index 15d4c6d02f..9eafce9243 100644 --- a/src/node/README.md +++ b/src/node/README.md @@ -39,7 +39,7 @@ npm install grpc To run the test suite, simply run `npm test` in the install location. ## API -This library internally uses [ProtoBuf.js](https://github.com/dcodeIO/ProtoBuf.js), and some structures it exports match those exported by that library +This library internally uses [ProtoBuf.js](https://github.com/dcodeIO/ProtoBuf.js), and some structures it exports match those exported by that library. If you require this module, you will get an object with the following members @@ -63,7 +63,7 @@ function loadObject(reflectionObject) Returns the same structure that `load` returns, but takes a reflection object from `ProtoBuf.js` instead of a file name. ```javascript -function Server([serverOpions]) +function Server([serverOptions]) ``` Constructs a server to which service/implementation pairs can be added. |