From c1a6e2fb43156b096787ad6e300f42b3da753826 Mon Sep 17 00:00:00 2001 From: Chen Hanxiao Date: Wed, 3 Jan 2018 17:56:35 +0800 Subject: [PATCH] util: virstring: Tweak a few more descriptions. There are a few more description-related issues that commit @9026d115 forgot to address. Signed-off-by: Chen Hanxiao Signed-off-by: Erik Skultety --- src/util/virstring.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/util/virstring.c b/src/util/virstring.c index 1c58df9150..2ec9f3544b 100644 --- a/src/util/virstring.c +++ b/src/util/virstring.c @@ -280,7 +280,7 @@ virStringListCopy(char ***dst, /** * virStringListFree: - * @str_array: a NULL-terminated array of strings to free + * @strings: a NULL-terminated array of strings to free * * Frees a NULL-terminated array of strings, and the array itself. * If called on a NULL value, virStringListFree() simply returns. @@ -1041,7 +1041,7 @@ int virStringSortRevCompare(const void *a, const void *b) * @matches: pointer to an array to be filled with NULL terminated list of matches * * Performs a POSIX extended regex search against a string and return all matching substrings. - * The @result value should be freed with virStringListFree() when no longer + * The @matches value should be freed with virStringListFree() when no longer * required. * * @code @@ -1319,7 +1319,7 @@ virStringFilterChars(char *str, const char *valid) /** * virStringToUpper: - * @str: string to capitalize + * @src string to capitalize * @dst: where to store the new capitalized string * * Capitalize the string with replacement of all '-' characters for '_'