summaryrefslogtreecommitdiff
path: root/doc/de/dev
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2009-04-24 17:24:56 +0200
committerSebastien Helleu <flashcode@flashtux.org>2009-04-24 17:24:56 +0200
commite3d2728571be0b56dc67253137366d96e3e7282a (patch)
tree298f5f9896373ac2a73c2eb61e38eae43eb72a17 /doc/de/dev
parent3464865a000c70b54bc9332d66944855294a128f (diff)
downloadweechat-e3d2728571be0b56dc67253137366d96e3e7282a.zip
Fix typo: splited/splitted -> split
Diffstat (limited to 'doc/de/dev')
-rw-r--r--doc/de/dev/plugin_c_api.de.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/de/dev/plugin_c_api.de.xml b/doc/de/dev/plugin_c_api.de.xml
index 14577d71d..f35947871 100644
--- a/doc/de/dev/plugin_c_api.de.xml
+++ b/doc/de/dev/plugin_c_api.de.xml
@@ -1006,7 +1006,7 @@ char **weechat_string_split_command (const char *command, char separator);
<note>
<para>
Result has to be free by a call to
- "weechat_string_free_splitted_command" after use.
+ "weechat_string_free_split_command" after use.
</para>
</note>
<para>
@@ -1015,24 +1015,24 @@ char **weechat_string_split_command (const char *command, char separator);
</para>
</section>
- <section id="secPluginCApi_weechat_string_splitted_command">
- <title>weechat_string_free_splitted_command</title>
+ <section id="secPluginCApi_weechat_string_split_command">
+ <title>weechat_string_free_split_command</title>
<para>
Prototype:
<programlisting>
-void weechat_string_free_splitted_command (char **splitted_command);
+void weechat_string_free_split_command (char **split_command);
</programlisting>
</para>
<para>
- Free memory used by a splitted command.
+ Free memory used by a split command.
</para>
<para>
Arguments:
<itemizedlist>
<listitem>
<para>
- <option>splitted_command</option>: command splitted by
+ <option>split_command</option>: command split by
"weechat_string_split_commaand" function
</para>
</listitem>
@@ -1046,7 +1046,7 @@ void weechat_string_free_splitted_command (char **splitted_command);
<screen>
char **argv = weechat_string_split_command ("/command1;/command2", ';');
...
-weechat_string_free_splitted_command (argv);
+weechat_string_free_split_command (argv);
</screen>
</para>
</section>