summaryrefslogtreecommitdiff
path: root/gio/gfile.c
diff options
context:
space:
mode:
authorWouter Bolsterlee <wbolster@svn.gnome.org>2008-02-25 14:04:38 +0000
committerWouter Bolsterlee <wbolster@src.gnome.org>2008-02-25 14:04:38 +0000
commita9a049800769218817d8e9083eca00ce45942a9b (patch)
tree459d0812f52353b0bad99d014ad311071035f3ea /gio/gfile.c
parent9edb46455c4b10a7c5e40aa865af3f53698a4c48 (diff)
Fix a few typos in translator comments and documentation.
2008-02-25 Wouter Bolsterlee <wbolster@svn.gnome.org> * gfile.c (g_file_find_enclosing_mount): * giomodule.c: * glocalfile.c (g_local_file_find_enclosing_mount): * goutputstream.c: Fix a few typos in translator comments and documentation. svn path=/trunk/; revision=6590
Diffstat (limited to 'gio/gfile.c')
-rw-r--r--gio/gfile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gio/gfile.c b/gio/gfile.c
index 0d1d610aa..95c0a422f 100644
--- a/gio/gfile.c
+++ b/gio/gfile.c
@@ -1248,7 +1248,7 @@ g_file_find_enclosing_mount (GFile *file,
GFileIface *iface;
g_return_val_if_fail (G_IS_FILE (file), NULL);
-
+
if (g_cancellable_set_error_if_cancelled (cancellable, error))
return NULL;
@@ -1256,14 +1256,14 @@ g_file_find_enclosing_mount (GFile *file,
if (iface->find_enclosing_mount == NULL)
{
- /* Translators: This is an error message when trying to the the
- enclosing (user visible) mount of a file, but none exist. */
+ /* Translators: This is an error message when trying to find the
+ enclosing (user visible) mount of a file, but none exists. */
g_set_error (error, G_IO_ERROR,
G_IO_ERROR_NOT_FOUND,
_("Containing mount does not exist"));
return NULL;
}
-
+
return (* iface->find_enclosing_mount) (file, cancellable, error);
}
/**