Documentation pass.
authorMahlon E. Smith <mahlon@martini.nu>
Fri, 25 Mar 2016 15:59:20 -0700
changeset 3 d0bc42746346
parent 2 48806dfcbba5
child 4 2f4e88604125
Documentation pass.
README.md
--- a/README.md	Fri Mar 25 15:18:09 2016 -0700
+++ b/README.md	Fri Mar 25 15:59:20 2016 -0700
@@ -82,8 +82,8 @@
 client.connect
 
 var headers = seq[ tuple[name:string, value:string] ]
-headers.add( "x-breakfast", "tequila" )
-headers.add( "receipt", "special-identifier" )
+headers.add( ("x-breakfast", "tequila") )
+headers.add( ("receipt", "special-identifier") )
 
 client.send( "/destination", "message!", "text/plain", headers )
 ```
@@ -116,16 +116,16 @@
 client.begin( "trans-3" )
 
 var headers = seq[ tuple[name:string, value:string] ]
-headers.add( "transaction", "trans-1" )
+headers.add( ("transaction", "trans-1") )
 client.send( "/destination", "hi", nil, headers ) # Part of "trans-1"
 
 headers = @[]
-headers.add( "transaction", "trans-2" )
+headers.add( ("transaction", "trans-2") )
 client.send( "/destination", "hi", nil, headers ) # Part of "trans-2"
 client.ack( "some-ack-id", "trans-2" ) # Part of "trans-2"
 
 headers = @[]
-headers.add( "transaction", "trans-3" )
+headers.add( ("transaction", "trans-3") )
 client.send( "/destination", "hi", nil, headers ) # Part of "trans-3"
 client.ack( "some-ack-id", "trans-3" ) # Part of "trans-3"