summaryrefslogtreecommitdiff
path: root/gtk/gtkcssprovider.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-04 18:21:13 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-04 18:24:29 -0500
commita22358c0c0ed5d9c946816c4212d534ef5f6f378 (patch)
tree8efa5819f62833c01a95bedfade1fe51809dd87a /gtk/gtkcssprovider.c
parent76447c3512f083a11e716d10ade774ade929b2dd (diff)
downloadgtk+-a22358c0c0ed5d9c946816c4212d534ef5f6f378.tar.gz
docs: use ` instead of <literal>
Diffstat (limited to 'gtk/gtkcssprovider.c')
-rw-r--r--gtk/gtkcssprovider.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkcssprovider.c b/gtk/gtkcssprovider.c
index 7f5843ce27..a030d1a34a 100644
--- a/gtk/gtkcssprovider.c
+++ b/gtk/gtkcssprovider.c
@@ -103,16 +103,16 @@
* various ways:
* - To require that a widget satisfies several conditions,
* combine several selectors into one by concatenating them. E.g.
- * <literal>GtkButton&num;button1</literal> matches a GtkButton widget
+ * `GtkButton&num;button1` matches a GtkButton widget
* with the name button1.
* - To only match a widget when it occurs inside some other
* widget, write the two selectors after each other, separated by whitespace.
- * E.g. <literal>GtkToolBar GtkButton</literal> matches GtkButton widgets
+ * E.g. `GtkToolBar GtkButton` matches GtkButton widgets
* that occur inside a GtkToolBar.
* - In the previous example, the GtkButton is matched even
* if it occurs deeply nested inside the toolbar. To restrict the match
* to direct children of the parent widget, insert a '>' character between
- * the two selectors. E.g. <literal>GtkNotebook > GtkLabel</literal> matches
+ * the two selectors. E.g. `GtkNotebook > GtkLabel` matches
* GtkLabel widgets that are direct children of a GtkNotebook.
*
* An example of widget classes and names in selectors: