summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs8
2 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 54618e9..afc5ddf 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,7 +4,7 @@ version = "0.2.6"
 authors = ["SoniEx2 <endermoneymod@gmail.com>"]
 description = "Lets you write HexChat plugins in Rust"
 license = "AGPL-3.0+"
-repository = "https://bitbucket.org/SoniEx2/hexchat-plugin.rs"
+repository = "https://cybre.tech/SoniEx2/rust.hexchat.hexchat-plugin/"
 
 [dependencies]
 libc = "0.2"
diff --git a/src/lib.rs b/src/lib.rs
index 2235e5b..b89ead0 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -789,8 +789,8 @@ impl PluginHandle {
     ///
     /// fn register_print_hooks(ph: &mut PluginHandle) {
     ///     ph.hook_print("Channel Message", |ph, arg| {
-    ///         if let Some(nick) = word.get(0) {
-    ///             if nick == "KnOwN_SpAmMeR" {
+    ///         if let Some(nick) = arg.get(0) {
+    ///             if *nick == "KnOwN_SpAmMeR" {
     ///                 return hexchat_plugin::EAT_ALL
     ///             }
     ///         }
@@ -841,10 +841,10 @@ impl PluginHandle {
     /// use hexchat_plugin::PluginHandle;
     ///
     /// fn register_timers(ph: &mut PluginHandle) {
-    ///     ph.hook_timer(|ph| {
+    ///     ph.hook_timer(2000, |ph| {
     ///         ph.print("timer up!");
     ///         false
-    ///     }, 2000);
+    ///     });
     /// }
     /// ```
     pub fn hook_timer<F>(&mut self, timeout: i32, cb: F) -> TimerHookHandle where F: Fn(&mut PluginHandle) -> bool + 'static + ::std::panic::RefUnwindSafe {