pidgin/pidgin

Fix some functions descriptions
xdg-dirs
2017-06-30, qarkai
f59bb8304c21
Parents d2408369eb7c
Children eff4283fc188
Fix some functions descriptions
--- a/libpurple/util.h Fri Jun 30 15:11:47 2017 +0300
+++ b/libpurple/util.h Fri Jun 30 15:39:44 2017 +0300
@@ -779,7 +779,7 @@
* purple_user_dir:
*
* Returns the purple settings directory in the user's home directory.
- * This is usually ~/.purple
+ * This is usually $HOME/.purple
*
* See purple_home_dir()
*
@@ -794,7 +794,7 @@
* purple_cache_dir:
*
* Returns the purple cache directory according to XDG Base Directory Specification.
- * This is usually ~/.cache/purple.
+ * This is usually $HOME/.cache/purple.
* If custom user dir was specified then this is cache
* sub-directory of DIR argument passed to -c option.
*
@@ -806,7 +806,7 @@
* purple_config_dir:
*
* Returns the purple configuration directory according to XDG Base Directory Specification.
- * This is usually ~/.config/purple.
+ * This is usually $HOME/.config/purple.
* If custom user dir was specified then this is config
* sub-directory of DIR argument passed to -c option.
*
@@ -818,7 +818,7 @@
* purple_data_dir:
*
* Returns the purple data directory according to XDG Base Directory Specification.
- * This is usually ~/.local/share/purple.
+ * This is usually $HOME/.local/share/purple.
* If custom user dir was specified then this is data
* sub-directory of DIR argument passed to -c option.
*
@@ -862,7 +862,7 @@
/**
* purple_util_write_data_to_file:
* @filename: The basename of the file to write in the purple_user_dir.
- * @data: A null-terminated string of data to write.
+ * @data: A string of data to write.
* @size: The size of the data to save. If data is
* null-terminated you can pass in -1.
*
@@ -885,7 +885,7 @@
/**
* purple_util_write_data_to_cache_file:
* @filename: The basename of the file to write in the purple_cache_dir.
- * @data: A null-terminated string of data to write.
+ * @data: A string of data to write.
* @size: The size of the data to save. If data is
* null-terminated you can pass in -1.
*
@@ -902,7 +902,7 @@
/**
* purple_util_write_data_to_config_file:
* @filename: The basename of the file to write in the purple_config_dir.
- * @data: A null-terminated string of data to write.
+ * @data: A string of data to write.
* @size: The size of the data to save. If data is
* null-terminated you can pass in -1.
*
@@ -919,7 +919,7 @@
/**
* purple_util_write_data_to_data_file:
* @filename: The basename of the file to write in the purple_data_dir.
- * @data: A null-terminated string of data to write.
+ * @data: A string of data to write.
* @size: The size of the data to save. If data is
* null-terminated you can pass in -1.
*
@@ -936,7 +936,7 @@
/**
* purple_util_write_data_to_file_absolute:
* @filename_full: Filename to write to
- * @data: A null-terminated string of data to write.
+ * @data: A string of data to write.
* @size: The size of the data to save. If data is
* null-terminated you can pass in -1.
*