Annotate all examples with their language

The C ones, at least.
This commit is contained in:
Matthias Clasen
2014-02-01 15:11:49 -05:00
parent 701f00f125
commit adf892e96a
49 changed files with 151 additions and 151 deletions

View File

@@ -2480,14 +2480,14 @@ g_variant_new_parsed_va (const gchar *format,
* g_variant_new() would have collected.
*
* Consider this simple example:
* |[
* |[<!-- language="C" -->
* g_variant_new_parsed ("[('one', 1), ('two', %i), (%s, 3)]", 2, "three");
* ]|
*
* In the example, the variable argument parameters are collected and
* filled in as if they were part of the original string to produce the
* result of
* |[
* |[<!-- language="C" -->
* [('one', 1), ('two', 2), ('three', 3)]
* ]|
*
@@ -2530,7 +2530,7 @@ g_variant_new_parsed (const gchar *format,
*
* This function might be used as follows:
*
* |[
* |[<!-- language="C" -->
* GVariant *
* make_pointless_dictionary (void)
* {