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.

View File

@ -52,11 +52,9 @@
* Another important feature of GOption is that it can automatically
* generate nicely formatted help output. Unless it is explicitly turned
* off with g_option_context_set_help_enabled(), GOption will recognize
* the `--help`, `-?`, `--help-all` and
* `--help-`<replaceable>groupname</replaceable> options
* (where <replaceable>groupname</replaceable> is the name of a
* #GOptionGroup) and write a text similar to the one shown in the
* following example to stdout.
* the `--help`, `-?`, `--help-all` and `--help-groupname` options
* (where `groupname` is the name of a #GOptionGroup) and write a text
* similar to the one shown in the following example to stdout.
*
* |[
* Usage:
@ -325,9 +323,8 @@ G_DEFINE_QUARK (g-option-context-error-quark, g_option_error)
/**
* g_option_context_new:
* @parameter_string: (allow-none): a string which is displayed in
* the first line of `--help` output, after the
* usage summary
* `<replaceable>programname</replaceable> [OPTION...]`
* the first line of `--help` output, after the usage summary
* `programname [OPTION...]`
*
* Creates a new option context.
*
@ -409,11 +406,10 @@ void g_option_context_free (GOptionContext *context)
* @context: a #GOptionContext
* @help_enabled: %TRUE to enable `--help`, %FALSE to disable it
*
* Enables or disables automatic generation of `--help`
* output. By default, g_option_context_parse() recognizes
* `--help`, `-h`, `-?`, `--help-all`
* and `--help-`<replaceable>groupname</replaceable> and creates
* suitable output to stdout.
* Enables or disables automatic generation of `--help` output.
* By default, g_option_context_parse() recognizes `--help`, `-h`,
* `-?`, `--help-all` and `--help-groupname` and creates suitable
* output to stdout.
*
* Since: 2.6
*/

View File

@ -1453,11 +1453,9 @@ g_test_get_root (void)
*
* Runs all tests under the toplevel suite which can be retrieved
* with g_test_get_root(). Similar to g_test_run_suite(), the test
* cases to be run are filtered according to
* test path arguments (-p <replaceable>testpath</replaceable>) as
* parsed by g_test_init().
* g_test_run_suite() or g_test_run() may only be called once
* in a program.
* cases to be run are filtered according to test path arguments
* (`-p testpath`) as parsed by g_test_init(). g_test_run_suite()
* or g_test_run() may only be called once in a program.
*
* In general, the tests and sub-suites within each suite are run in
* the order in which they are defined. However, note that prior to
@ -2144,9 +2142,9 @@ g_test_run_suite_internal (GTestSuite *suite,
*
* Execute the tests within @suite and all nested #GTestSuites.
* The test suites to be executed are filtered according to
* test path arguments (-p <replaceable>testpath</replaceable>)
* as parsed by g_test_init(). See the g_test_run() documentation
* for more information on the order that tests are run in.
* test path arguments (`-p testpath`) as parsed by g_test_init().
* See the g_test_run() documentation for more information on the
* order that tests are run in.
*
* g_test_run_suite() or g_test_run() may only be called once
* in a program.