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 | |
parent | c008fa68b714e4c9d95cc46caf7a30e35b174685 (diff) | |
download | weechat-5b9d40aca3eb854c70c6afc65a4ede3129bad4f4.zip |
doc: fix typo in developer's guide
Diffstat (limited to 'doc')
-rw-r--r-- | doc/en/weechat_dev.en.adoc | 4 | ||||
-rw-r--r-- | doc/fr/weechat_dev.fr.adoc | 4 |
2 files changed, 4 insertions, 4 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_): diff --git a/doc/fr/weechat_dev.fr.adoc b/doc/fr/weechat_dev.fr.adoc index f5173d6e4..88bdf4e1b 100644 --- a/doc/fr/weechat_dev.fr.adoc +++ b/doc/fr/weechat_dev.fr.adoc @@ -745,8 +745,8 @@ avec un "callback". [[doubly_linked_lists]] === Listes doublement chaînées -La plupart des listes chaînes WeeChat sont doublement chaînées : chaque nœud a -un pointeur vers le nœud précédent/suivant. +La plupart des listes WeeChat sont doublement chaînées : chaque nœud a un +pointeur vers le nœud précédent/suivant. Exemple : liste des tampons (de _src/gui/gui-buffer.h_) : |