docs: don't escape entities in example code

https://bugzilla.gnome.org/show_bug.cgi?id=723119
This commit is contained in:
William Jon McCann
2014-01-27 15:42:15 -05:00
parent 48b359ea53
commit e31ebda1d7
10 changed files with 61 additions and 61 deletions

View File

@ -59,10 +59,10 @@
* GError *error = NULL;
*
* manager = gtk_recent_manager_get_default ();
* info = gtk_recent_manager_lookup_item (manager, file_uri, &error);
* info = gtk_recent_manager_lookup_item (manager, file_uri, &error);
* if (error)
* {
* g_warning ("Could not find the file: %s", error->message);
* g_warning ("Could not find the file: %s", error->message);
* g_error_free (error);
* }
* else