diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-02-01 15:11:49 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-02-01 15:11:49 -0500 |
commit | adf892e96af403b8950dff1a370e4270ffaebc62 (patch) | |
tree | 43c4f7c21ae86c8540a75c275bba19c3227c7d64 /gmodule | |
parent | 701f00f12515dfad2092842f34ccbf11679406e3 (diff) |
Annotate all examples with their language
The C ones, at least.
Diffstat (limited to 'gmodule')
-rw-r--r-- | gmodule/gmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gmodule/gmodule.c b/gmodule/gmodule.c index 95c679692..56c0e0f01 100644 --- a/gmodule/gmodule.c +++ b/gmodule/gmodule.c @@ -80,7 +80,7 @@ * it must ensure that it is never unloaded, by calling g_module_make_resident(). * * Example: Calling a function defined in a GModule - * |[ + * |[<!-- language="C" --> * /* the function signature for 'say_hello' */ * typedef void (* SayHelloFunc) (const char *message); * |