Fix some typos

Correct some words spelling for reading more easily.
This commit is contained in:
Nguyen Quang Huy
2019-02-25 12:56:38 +07:00
parent 8362bda0bd
commit 566d29d01e
2 changed files with 2 additions and 2 deletions

View File

@@ -312,7 +312,7 @@ NOTE: The advertise address should really result in a connection to srvC. Provid
As part of the gossip protocol, a server will also send to the other servers the URL clients should connect to.<br>
The URL is the one defined in the `listen` parameter, or, if 0.0.0.0 or :: is specified, the resolved non-local IP addresses for the "any" interface.
If those addresses are not reacheable from the outside world where the clients are running, the administrator can use the `--no_advertise` option to disable servers gossiping those URLs.<br>
If those addresses are not reachable from the outside world where the clients are running, the administrator can use the `--no_advertise` option to disable servers gossiping those URLs.<br>
Another option is to provide a `--client_advertise` URL to use instead. If this option is specified (and advertise has not been disabled), then the server will advertise this URL to other servers instead of its `listen` address (or resolved IPs when listen is 0.0.0.0 or ::).

View File

@@ -66,7 +66,7 @@ See [Issue #346](https://github.com/nats-io/gnatsd/issues/346)
#### Make auto-unsubscribe atomic to the SUB protocol
Right now auto-unsubscribe is two operations: `SUB foo 1` followed by `UNSUB foo 1 1` (unsubscribe
after 1 message). For the sake of simplicty, efficiency and usability, we'd like to make that an
after 1 message). For the sake of simplicity, efficiency and usability, we'd like to make that an
atomic protocol operation, optionally specifying the limit as part of the subscription e.g. `SUB foo 1 1`
See [Issue #344](https://github.com/nats-io/gnatsd/issues/344)