diff options
author | Loïc Hoguin <[email protected]> | 2011-12-26 11:11:37 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2011-12-26 11:11:37 +0100 |
commit | 2d885f840c35aafd7cbb68e5c5aafc0b1c907460 (patch) | |
tree | 2cab5e5ceb19475d1ddd9a99e5bcf78f805ad186 /README.md | |
parent | 1a4b46bd90559809d334b98ef1a69cc505747489 (diff) | |
download | bullet-2d885f840c35aafd7cbb68e5c5aafc0b1c907460.tar.gz bullet-2d885f840c35aafd7cbb68e5c5aafc0b1c907460.tar.bz2 bullet-2d885f840c35aafd7cbb68e5c5aafc0b1c907460.zip |
Fix an error in the previously edited README
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -48,12 +48,12 @@ is automatically done when needed by the Bullet client as explained later in this document. You might have noticed the odd Active argument to init/4. It -indicates what type of connection we have. When Active == false, +indicates what type of connection we have. When Active == once, we have a temporary connection that only allows one reply before terminating. When Active == true, the connection allows any number of replies. You can use this information to inform your session process that it should send only 1 message, in the case of -Active == false, or that it can send messages whenever in the +Active == once, or that it can send messages whenever in the case of Active == true. You would typically use init/4 to inform your session process |