diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-09-23 16:24:52 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-09-23 16:24:52 +0200 |
commit | 92b9533efe3e467f74d170683879fab838bddfe1 (patch) | |
tree | 723b89e8dc02752fa914ab7303cc09ea4b72a4aa /doc/de/weechat_scripting.de.adoc | |
parent | 5aab494dd63e6cbbbb54fa0e362ae64e85dcadb3 (diff) | |
download | weechat-92b9533efe3e467f74d170683879fab838bddfe1.zip |
core: fix typo: Javascript -> JavaScript
Diffstat (limited to 'doc/de/weechat_scripting.de.adoc')
-rw-r--r-- | doc/de/weechat_scripting.de.adoc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/de/weechat_scripting.de.adoc b/doc/de/weechat_scripting.de.adoc index e37aa994f..46243998a 100644 --- a/doc/de/weechat_scripting.de.adoc +++ b/doc/de/weechat_scripting.de.adoc @@ -35,7 +35,7 @@ werden folgende Programmiersprachen unterstützt: * Lua * Tcl * Guile (Scheme) -* Javascript +* JavaScript * PHP [NOTE] @@ -91,7 +91,7 @@ Weechat.config_new_option(config, section, "name", "string", "description of opt ** config_new_option ** bar_new -==== Javascript +==== JavaScript * Funktionen werden im Format `weechat.xxx(arg1, arg2, ...);` ausgeführt @@ -179,7 +179,7 @@ weechat::print "" "Hallo, von einem tcl Skript!" (weechat:print "" "Hallo, von einem scheme Skript!") ---- -* Javascript: +* JavaScript: [source,javascript] ---- @@ -387,7 +387,7 @@ weechat::hook_timer 1000 0 1 timer_cb test (weechat:hook_timer 1000 0 1 "timer_cb" "test") ---- -* Javascript: +* JavaScript: [source,javascript] ---- @@ -770,7 +770,7 @@ weechat.prnt(buffer, "Nachricht im #weechat Channel") ---- [NOTE] -Die print Funktion heißt in Perl/Ruby/Lua/Tcl/Guile/Javascript `print`. +Die print Funktion heißt in Perl/Ruby/Lua/Tcl/Guile/JavaScript `print`. In Python lautet die Funktion `prnt`. [[buffers_send_text]] |