From e3d2728571be0b56dc67253137366d96e3e7282a Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Fri, 24 Apr 2009 17:24:56 +0200 Subject: Fix typo: splited/splitted -> split --- doc/en/dev/plugin_c_api.en.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'doc/en/dev/plugin_c_api.en.xml') diff --git a/doc/en/dev/plugin_c_api.en.xml b/doc/en/dev/plugin_c_api.en.xml index 9b668e6f3..211163bdf 100644 --- a/doc/en/dev/plugin_c_api.en.xml +++ b/doc/en/dev/plugin_c_api.en.xml @@ -1005,7 +1005,7 @@ char **weechat_string_split_command (const char *command, char separator); Result has to be free by a call to - "weechat_string_free_splitted_command" after use. + "weechat_string_free_split_command" after use. @@ -1014,24 +1014,24 @@ char **weechat_string_split_command (const char *command, char separator); -
- weechat_string_free_splitted_command +
+ weechat_string_free_split_command Prototype: -void weechat_string_free_splitted_command (char **splitted_command); +void weechat_string_free_split_command (char **split_command); - Free memory used by a splitted command. + Free memory used by a split command. Arguments: - : command splitted by + : command split by "weechat_string_split_commaand" function @@ -1045,7 +1045,7 @@ void weechat_string_free_splitted_command (char **splitted_command); char **argv = weechat_string_split_command ("/command1;/command2", ';'); ... -weechat_string_free_splitted_command (argv); +weechat_string_free_split_command (argv);
-- cgit v1.2.3