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

@ -2951,11 +2951,11 @@ gtk_style_context_lookup_color (GtkStyleContext *context,
* Can be handled in the CSS file like this:
* |[
* GtkButton {
* background-color: #f00
* background-color: #f00
* }
*
* GtkButton:hover {
* background-color: #fff;
* background-color: #fff;
* transition: 200ms linear
* }
* ]|