From 7cc24f919079b2b53db73a556a5a7ff688bdcd5d Mon Sep 17 00:00:00 2001 From: Jarrett Cruger Date: Sat, 3 Jan 2015 22:29:05 -0500 Subject: [PATCH] [doc fix] headings --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 20f6890..97670f6 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ a req/rep pattern. This is ideal when doing concurrent operations that require the return callback to be properly associated with the data that was sent (and the result then returned) -Goal: +## Goal: The purpose of this module is to hide all of the dirty async startup needed when connecting to rabbit. When initializing a constructor, we establish a `connection` to rabbit and @@ -22,7 +22,7 @@ the `REP` socket which emits any message received from a `REQ` socket with a callback to reply to it. Please see the example below to understand my ramblings. -Example: +## Example: Below shows a simple use case