X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=glib%2Fgfileutils.c;h=5fb0e3d5889177b101183f45623c79b2f8aaaa62;hb=a412fb16541620ed72da86daac0774afe4703d9d;hp=295a1dfee6b385ec2fe332ba0e93375846f946fd;hpb=b205c9267b85243a1081b0854d172bf25284fbab;p=platform%2Fupstream%2Fglib.git diff --git a/glib/gfileutils.c b/glib/gfileutils.c index 295a1df..5fb0e3d 100644 --- a/glib/gfileutils.c +++ b/glib/gfileutils.c @@ -639,19 +639,19 @@ g_file_get_contents (const gchar *filename, * g_mkstemp: * @tmpl: template filename * - * Opens a temporary file. See the mkstemp() documentation + * Opens a temporary file. See the mkstemp() documentation * on most UNIX-like systems. This is a portability wrapper, which simply calls - * mkstemp() on systems that have it, and implements + * mkstemp() on systems that have it, and implements * it in GLib otherwise. * * The parameter is a string that should match the rules for - * mkstemp(), i.e. end in "XXXXXX". The X string will + * mkstemp(), i.e. end in "XXXXXX". The X string will * be modified to form the name of a file that didn't exist. * - * Return value: A file handle (as from open()) to the file + * Return value: A file handle (as from open()) to the file * opened for reading and writing. The file is opened in binary mode * on platforms where there is a difference. The file handle should be - * closed with close(). In case of errors, -1 is returned. + * closed with close(). In case of errors, -1 is returned. */ int g_mkstemp (char *tmpl) @@ -723,21 +723,21 @@ g_mkstemp (char *tmpl) * files (as returned by g_get_tmp_dir()). * * @tmpl should be a string ending with six 'X' characters, as the - * parameter to g_mkstemp() (or mkstemp()). + * parameter to g_mkstemp() (or mkstemp()). * However, unlike these functions, the template should only be a * basename, no directory components are allowed. If template is %NULL, * a default template is used. * - * Note that in contrast to g_mkstemp() (and mkstemp()) + * Note that in contrast to g_mkstemp() (and mkstemp()) * @tmpl is not modified, and might thus be a read-only literal string. * * The actual name used is returned in @name_used if non-%NULL. This * string should be freed with g_free() when not needed any longer. * - * Return value: A file handle (as from open()) to + * Return value: A file handle (as from open()) to * the file opened for reading and writing. The file is opened in binary * mode on platforms where there is a difference. The file handle should be - * closed with close(). In case of errors, -1 is returned + * closed with close(). In case of errors, -1 is returned * and @error will be set. **/ int