diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-12-04 13:17:12 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-12-04 13:17:12 +0100 |
commit | 5b9d40aca3eb854c70c6afc65a4ede3129bad4f4 (patch) | |
tree | e49f14d7244b71e9a9d7f7131f14afa5d618bca0 /doc/en/weechat_dev.en.adoc | |
parent | c008fa68b714e4c9d95cc46caf7a30e35b174685 (diff) | |
download | weechat-5b9d40aca3eb854c70c6afc65a4ede3129bad4f4.zip |
doc: fix typo in developer's guide
Diffstat (limited to 'doc/en/weechat_dev.en.adoc')
-rw-r--r-- | doc/en/weechat_dev.en.adoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/en/weechat_dev.en.adoc b/doc/en/weechat_dev.en.adoc index 23c03b2c7..3de0dece3 100644 --- a/doc/en/weechat_dev.en.adoc +++ b/doc/en/weechat_dev.en.adoc @@ -732,8 +732,8 @@ If for some reasons you have to sleep a while, use `hook_timer` with a callback. [[doubly_linked_lists]] === Doubly linked lists -Most of WeeChat linked lists are doubly linked lists: each node has pointer to -previous and next node. +Most of WeeChat lists are doubly linked lists: each node has pointer to previous +and next node. Example: list of buffers (from _src/gui/gui-buffer.h_): |