diff options
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/weechat_plugin_api.en.adoc | 8 | ||||
-rw-r--r-- | doc/en/weechat_scripting.en.adoc | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc index e94a84537..ef2bf4c9c 100644 --- a/doc/en/weechat_plugin_api.en.adoc +++ b/doc/en/weechat_plugin_api.en.adoc @@ -5055,7 +5055,7 @@ Arguments: Return value: -* index of new item (>= 0), -1 if error. +* index of new item (≥ 0), -1 if error. C example: @@ -5087,7 +5087,7 @@ Arguments: Return value: -* index of new item (>= 0), -1 if error. +* index of new item (≥ 0), -1 if error. C example: @@ -9290,7 +9290,7 @@ Arguments: ** _void *data_: pointer ** _const char *command_: command executed by child ** _int return_code_: return code: -*** _>= 0_: child return code for a command, and for URL possible values are: +*** _≥ 0_: child return code for a command, and for URL possible values are: **** _0_: transfer OK **** _1_: invalid URL **** _2_: transfer error @@ -15572,7 +15572,7 @@ Arguments: Return value: -* socket number (>= 0) if connection is OK, -1 if an error occurred +* socket number (≥ 0) if connection is OK, -1 if an error occurred C example: diff --git a/doc/en/weechat_scripting.en.adoc b/doc/en/weechat_scripting.en.adoc index 269ff368d..4db1352d8 100644 --- a/doc/en/weechat_scripting.en.adoc +++ b/doc/en/weechat_scripting.en.adoc @@ -883,7 +883,7 @@ Examples: weechat.prnt("", "hello") # display "hello" on core buffer, but do not write it to log file -# (version >= 0.3.3 only) +# (version ≥ 0.3.3 only) weechat.prnt_date_tags("", 0, "no_log", "hello") # display prefix "==>" and message "hello" on current buffer |