Stop using replaceable tags

This commit is contained in:
Matthias Clasen
2014-02-06 16:49:29 -05:00
parent 5baa0f2af5
commit df990914cf
4 changed files with 22 additions and 28 deletions

View File

@@ -207,9 +207,9 @@
* "xattr::". Keys for the "xattr-sys" namespace are constructed by
* concatenating "xattr-sys::" with the extended attribute name. All extended
* attribute values are returned as hex-encoded strings in which bytes outside
* the ASCII range are encoded as hexadecimal escape sequences of the form
* \x<replaceable>nn</replaceable>.
**/
* the ASCII range are encoded as escape sequences of the form \x`nn`
* where `nn` is a 2-digit hexadecimal number.
*/
/*
* _g_file_attribute_value_free:

View File

@@ -2172,11 +2172,11 @@ g_settings_is_writable (GSettings *settings,
/**
* g_settings_get_child:
* @settings: a #GSettings object
* @name: the name of the 'child' schema
* @name: the name of the child schema
*
* Creates a 'child' settings object which has a base path of
* <replaceable>base-path</replaceable>/@name, where
* <replaceable>base-path</replaceable> is the base path of @settings.
* Creates a child settings object which has a base path of
* `base-path/@name`, where `base-path` is the base path of
* @settings.
*
* The schema for the child settings object must have been declared
* in the schema of @settings using a &lt;child&gt; element.