diff options
author | Till Hoeppner | 2015-06-28 21:36:09 +0200 |
---|---|---|
committer | Till Hoeppner | 2015-06-28 21:36:09 +0200 |
commit | 37389d9140554235e464eec934ee0d2162858449 (patch) | |
tree | 5450df973299f2206e7af1420cd8ac8c36890582 /examples/02.rs | |
parent | 41e96ec6d9e78d6523a17e170038167a0fbd3951 (diff) | |
download | irsc-37389d9140554235e464eec934ee0d2162858449.tar.gz irsc-37389d9140554235e464eec934ee0d2162858449.tar.xz irsc-37389d9140554235e464eec934ee0d2162858449.zip |
Fix typo in 02.rs
Diffstat (limited to 'examples/02.rs')
-rw-r--r-- | examples/02.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/02.rs b/examples/02.rs index c70f905..568d3e7 100644 --- a/examples/02.rs +++ b/examples/02.rs @@ -31,7 +31,7 @@ fn main() { // register(nick, user, description, [password]) s.register("irsc02", "irsc", "Example bot 02", None); - // The client must be accessible from anywh when using the Event API. + // The client must be accessible from anywhere when using the Event API. // .into_shared() will convert the previously owned client into a wrapper. let mut shared = s.into_shared(); |