From f5d2feddf6311492ea9f7124d73d2997db0ca123 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 15 Dec 2007 06:03:35 +0000 Subject: [PATCH] Fix up docs svn path=/trunk/; revision=6133 --- gio/ChangeLog | 5 +++++ gio/gfile.h | 8 ++++---- gio/gunixmounts.c | 6 ++++-- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/gio/ChangeLog b/gio/ChangeLog index 33bd99aee..82da9ee67 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,8 @@ +2007-12-14 Matthias Clasen + + * gunixmounts.c: + * gfile.h: Doc updates + 2007-12-14 Matthias Clasen * gcontenttype.c: diff --git a/gio/gfile.h b/gio/gfile.h index 3b63bf2df..95244c85e 100644 --- a/gio/gfile.h +++ b/gio/gfile.h @@ -54,8 +54,8 @@ typedef enum { /** * GFileCreateFlags: - * @G_FILE_CREATE_FLAGS_NONE: No flags set. - * @G_FILE_CREATE_FLAGS_PRIVATE: Create a file that can only be + * @G_FILE_CREATE_NONE: No flags set. + * @G_FILE_CREATE_PRIVATE: Create a file that can only be * accessed by the current user. * * Flags used when an operation may create a file. @@ -226,8 +226,8 @@ typedef gboolean (* GFileReadMoreCallback) (const char *file_contents, * @unmount_mountable_finish: Finishes an unmount operation. * @eject_mountable: Ejects a mountable. * @eject_mountable_finish: Finishes an eject operation. - * @g_file_mount_enclosing_volume: Mounts a specified location. - * @g_file_mount_enclosing_volume_finish: Finishes mounting a specified location. + * @mount_enclosing_volume: Mounts a specified location. + * @mount_enclosing_volume_finish: Finishes mounting a specified location. * @monitor_dir: Creates a #GDirectoryMonitor for the location. * @monitor_file: Creates a #GFileMonitor for the location. * diff --git a/gio/gunixmounts.c b/gio/gunixmounts.c index 61ca2cf44..13a770289 100644 --- a/gio/gunixmounts.c +++ b/gio/gunixmounts.c @@ -193,14 +193,16 @@ is_in (const char *value, const char *set[]) /** * g_unix_is_mount_path_system_internal: - * @mount_path: a mount path, e.g. /media/disk or /usr + * @mount_path: a mount path, e.g. /media/disk + * or /usr * * Determines if @mount_path is considered an implementation of the * OS. This is primarily used for hiding mountable and mounted volumes * that only are used in the OS and has little to no relevance to the * casual user. * - * Returns; %TRUE if @mount_path is considered an implementation detail of the OS. + * Returns: %TRUE if @mount_path is considered an implementation detail + * of the OS. **/ gboolean g_unix_is_mount_path_system_internal (const char *mount_path)