diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-12-12 11:34:19 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-12-12 11:34:19 +0100 |
commit | 16bd6071427509191fed46a74f9d3512687ddd04 (patch) | |
tree | 9429021a5232e630d15ae35f4a468858aa311348 /doc/en | |
parent | 1234d6c8f73fde30a7113b5e526b8786512dd233 (diff) | |
download | weechat-16bd6071427509191fed46a74f9d3512687ddd04.zip |
doc: fix example of function hashtable_add_to_infolist in plugin API reference
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/weechat_plugin_api.en.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt index 3c5cb4c94..fd7a427a9 100644 --- a/doc/en/weechat_plugin_api.en.txt +++ b/doc/en/weechat_plugin_api.en.txt @@ -3457,10 +3457,10 @@ weechat_hashtable_add_to_infolist (hashtable, infolist_item, "testhash"); "key1" => "value 1" "key2" => "value 2" then following variables will be added to infolist item: - "testhash_name_00001" = "key1" - "testhash_value_00001" = "value 1" - "testhash_name_00002" = "key2" - "testhash_value_00002" = "value 2" + "testhash_name_00000" = "key1" + "testhash_value_00000" = "value 1" + "testhash_name_00001" = "key2" + "testhash_value_00001" = "value 2" */ ---------------------------------------- |