diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-06-29 13:56:28 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-06-29 13:56:28 +0200 |
commit | b311ca894d9f32d7452ab9db0633af862d0a72c8 (patch) | |
tree | ee462ec43926a62374a79db03e6db64d1aca473b /doc/en | |
parent | f4e4f55de1f27893a46323e70ae37eff923fb59c (diff) | |
download | weechat-b311ca894d9f32d7452ab9db0633af862d0a72c8.zip |
doc: fix example of weechat.command without buffer: it is executed on current buffer, not core buffer (scripting guide)
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/weechat_scripting.en.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/en/weechat_scripting.en.txt b/doc/en/weechat_scripting.en.txt index 94a2d2eaf..124a87b3d 100644 --- a/doc/en/weechat_scripting.en.txt +++ b/doc/en/weechat_scripting.en.txt @@ -548,7 +548,7 @@ Examples: [source,python] ---------------------------------------- -# execute command "/help" on core buffer +# execute command "/help" on current buffer (result is on core buffer) weechat.command("", "/help") # send "hello" to #weechat IRC channel (users on channel will see message) |