summaryrefslogtreecommitdiff
path: root/gtk/gtkcssprovider.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-04 19:20:16 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-04 19:20:16 -0500
commit8ad75bdfff5c13db4bf1cd8b2b838ffb2e21823d (patch)
tree90d8ad6c16391627e55efbc509b5fc4a52a932e9 /gtk/gtkcssprovider.c
parent5dd751f0064fb124a839d7dd26fd15c305350d80 (diff)
downloadgtk+-8ad75bdfff5c13db4bf1cd8b2b838ffb2e21823d.tar.gz
docs: don't use <replaceable>
Diffstat (limited to 'gtk/gtkcssprovider.c')
-rw-r--r--gtk/gtkcssprovider.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk/gtkcssprovider.c b/gtk/gtkcssprovider.c
index 1d1805cdb3..fb4947a0e8 100644
--- a/gtk/gtkcssprovider.c
+++ b/gtk/gtkcssprovider.c
@@ -63,11 +63,11 @@
* In addition, certain files will be read when GTK+ is initialized. First,
* the file `$XDG_CONFIG_HOME/gtk-3.0/gtk.css`
* is loaded if it exists. Then, GTK+ tries to load
- * `$HOME/.themes/<replaceable>theme-name</replaceable>/gtk-3.0/gtk.css`,
+ * `$HOME/.themes/theme-name/gtk-3.0/gtk.css`,
* falling back to
- * `<replaceable>datadir</replaceable>/share/themes/<replaceable>theme-name</replaceable>/gtk-3.0/gtk.css`,
- * where <replaceable>theme-name</replaceable> is the name of the current theme
- * (see the #GtkSettings:gtk-theme-name setting) and <replaceable>datadir</replaceable>
+ * `datadir/share/themes/theme-name/gtk-3.0/gtk.css`,
+ * where theme-name is the name of the current theme
+ * (see the #GtkSettings:gtk-theme-name setting) and datadir
* is the prefix configured when GTK+ was compiled, unless overridden by the
* `GTK_DATA_PREFIX` environment variable.
*
@@ -894,11 +894,11 @@
* GtkThemingEngines can register their own, engine-specific style properties
* with the function gtk_theming_engine_register_property(). These properties
* can be set in CSS like other properties, using a name of the form
- * <literallayout>-<replaceable>namespace</replaceable>-<replaceable>name</replaceable></literallayout>, where <replaceable>namespace</replaceable> is typically
- * the name of the theming engine, and <replaceable>name</replaceable> is the
+ * <literallayout>-namespace-name</literallayout>, where namespace is typically
+ * the name of the theming engine, and name is the
* name of the property. Style properties that have been registered by widgets
* using gtk_widget_class_install_style_property() can also be set in this
- * way, using the widget class name for <replaceable>namespace</replaceable>.
+ * way, using the widget class name for namespace.
*
* An example for using engine-specific style properties:
* |[