summaryrefslogtreecommitdiff
path: root/doc/ja/weechat_plugin_api.ja.adoc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2022-01-30 10:54:30 +0100
committerSébastien Helleu <flashcode@flashtux.org>2022-01-30 11:01:17 +0100
commitbf3241208b553babdeb851d684060b81d30edc72 (patch)
tree94b071d7fa6c84339d8f097dc7e31e835e6e151e /doc/ja/weechat_plugin_api.ja.adoc
parent28d6b71d9e656c20fc5bfb6b69c8a9b9e335c863 (diff)
downloadweechat-bf3241208b553babdeb851d684060b81d30edc72.zip
doc/api: fix type of parameter "date" in script prototype of function prnt_date_tags
Diffstat (limited to 'doc/ja/weechat_plugin_api.ja.adoc')
-rw-r--r--doc/ja/weechat_plugin_api.ja.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc
index afe0cbbd7..5c455d9d9 100644
--- a/doc/ja/weechat_plugin_api.ja.adoc
+++ b/doc/ja/weechat_plugin_api.ja.adoc
@@ -8606,7 +8606,7 @@ weechat_printf_date_tags (NULL, time (NULL) - 120, "notify_message",
[source,python]
----
# プロトタイプ
-def prnt_date_tags(buffer: str, date: str, tags: str, message: str) -> int: ...
+def prnt_date_tags(buffer: str, date: int, tags: str, message: str) -> int: ...
# 例
time = int(time.time())