summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPaul Schoenfelder <paulschoenfelder@gmail.com>2014-02-19 19:35:13 -0600
committerPaul Schoenfelder <paulschoenfelder@gmail.com>2014-02-19 19:35:13 -0600
commit4456fc2615d24048de288d858f3ed9e380db4374 (patch)
tree1c52206762cc2f7053091f3655411798f88540fb /README.md
parentUpdate example handler with all currently known events (diff)
Fixes #2
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index eeaabe9..cd73ea9 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,8 @@ Add ExIrc as a dependency to your project in mix.exs, and add it as an applicati
Then fetch it using `mix deps.get`.
To use ExIrc, you need to start a new client process, and add event handlers. An example event handler module
-is located in `lib/exirc/example_handler.ex`. A simple module is defined below as an example of how you might
+is located in `lib/exirc/example_handler.ex`. **The example handler is kept up to date with all events you can
+expect to receive from the client**. A simple module is defined below as an example of how you might
use ExIrc in practice. ExampleHandler here is the one that comes bundled with ExIrc.
```elixir