diff --git a/README.md b/README.md index 229cc397..5678fcea 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Post-messaging on the client side using a simple server/client pattern. Use this if you want to communicate between two different windows (or popups, or iframes) using `window.postMessage`, -but you don't like the fire-and-forget nature of `window.postMessage`, which doesn't tell you if your message got through, if there was an error, and isn't fully supported in even the latest versions of IE for window to window communication. +but you don't like the fire-and-forget nature of `window.postMessage` (which doesn't tell you if your message got through, if there was an error, and isn't fully supported in even the latest versions of IE for window to window communication). With this module, you can set up a listener in one window, have it wait for a post message, and then have it reply with data, while gracefully handling any errors that crop up.