Fix a formatting error in the docs

Need to replace % by %amp; in examples. This was noticed in
bug 583522.
This commit is contained in:
Matthias Clasen
2009-05-24 00:17:49 -04:00
parent 1199b3f741
commit 478cc88f8d

View File

@ -53,7 +53,7 @@ GError* error = NULL;
GtkBuilder* builder = gtk_builder_new (<!-- -->);
if (!gtk_builder_add_from_file (builder, FILE, &amp;error))
{
g_warning ("Couldn't load builder file: %s", error->message);
g_warning ("Couldn't load builder file: %amp;s", error->message);
g_error_free (error);
}
</screen>