summary refs log tree commit diff stats
path: root/src/fe-gtk/fe-gtk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fe-gtk/fe-gtk.c')
-rw-r--r--src/fe-gtk/fe-gtk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-gtk/fe-gtk.c b/src/fe-gtk/fe-gtk.c
index 285ba42b..7eca0710 100644
--- a/src/fe-gtk/fe-gtk.c
+++ b/src/fe-gtk/fe-gtk.c
@@ -1077,8 +1077,8 @@ uri_contains_forbidden_characters (const char *uri)
 static char *
 maybe_escape_uri (const char *uri)
 {
-	/* There isn't an exact way to know if a string has already been escaped or not
-	 * so we can try some heuristics. */
+	/* The only way to know if a string has already been escaped or not
+	 * is by fulling parsing each segement but we can try some more simple heuristics. */
 
 	/* If we find characters that should clearly be escaped. */
 	if (uri_contains_forbidden_characters (uri))