summaryrefslogtreecommitdiff
path: root/gtk/gtkstylecontext.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-01-27 15:42:15 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-01-29 12:45:49 -0500
commite31ebda1d72d2b2182d3a3415939ea1761027428 (patch)
treea9142c20c8b68925c171e2d8231d320463960a85 /gtk/gtkstylecontext.c
parent48b359ea534457933fb43f62025c17db474b2611 (diff)
downloadgtk+-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.c4
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: &num;f00
+ * background-color: #f00
* }
*
* GtkButton:hover {
- * background-color: &num;fff;
+ * background-color: #fff;
* transition: 200ms linear
* }
* ]|