diff options
Diffstat (limited to 'doc/it/weechat_plugin_api.it.adoc')
-rw-r--r-- | doc/it/weechat_plugin_api.it.adoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc index 78417a469..c2ad9dc92 100644 --- a/doc/it/weechat_plugin_api.it.adoc +++ b/doc/it/weechat_plugin_api.it.adoc @@ -9268,7 +9268,7 @@ struct t_hashtable *options_url1 = weechat_hashtable_new (8, NULL); if (options_url1) { - weechat_hashtable_set (options, "file_out", "/tmp/weechat.org.html"); + weechat_hashtable_set (options_url1, "file_out", "/tmp/weechat.org.html"); struct t_hook *my_process_hook = weechat_hook_process_hashtable ("url:https://weechat.org/", options_url1, 20000, @@ -9284,7 +9284,7 @@ struct t_hashtable *options_url2 = weechat_hashtable_new (8, NULL); if (options_url2) { - weechat_hashtable_set (options, "httpheader", + weechat_hashtable_set (options_url2, "httpheader", "Header1: value1\n" "Header2: value2"); struct t_hook *my_process_hook = weechat_hook_process_hashtable ("url:http://localhost:8080/", |