diff --git a/README.md b/README.md
index 42f2ce35..a09a70f5 100644
--- a/README.md
+++ b/README.md
@@ -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.
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.
+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.
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 ::).
diff --git a/ROADMAP.md b/ROADMAP.md
index 7fd87217..5785bebe 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -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)