diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-01-27 15:42:15 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-01-29 12:45:49 -0500 |
commit | e31ebda1d72d2b2182d3a3415939ea1761027428 (patch) | |
tree | a9142c20c8b68925c171e2d8231d320463960a85 /gtk/gtkstylecontext.c | |
parent | 48b359ea534457933fb43f62025c17db474b2611 (diff) | |
download | gtk+-e31ebda1d72d2b2182d3a3415939ea1761027428.tar.gz |
docs: don't escape entities in example code
https://bugzilla.gnome.org/show_bug.cgi?id=723119
Diffstat (limited to 'gtk/gtkstylecontext.c')
-rw-r--r-- | gtk/gtkstylecontext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c index f8b6064eab..18ef29a601 100644 --- a/gtk/gtkstylecontext.c +++ b/gtk/gtkstylecontext.c @@ -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 * } * ]| |