summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2019-12-10 09:32:10 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2019-12-10 09:32:10 +0100
commit66590caa31cb61b933d744c593dfdbae03f74914 (patch)
treef50b13e9a933bca5a0d45ce8516d1da92b06d019
parent5dadaf2c7b086075bf3a3418d419cecf20390666 (diff)
downloadsigc++-66590caa31cb61b933d744c593dfdbae03f74914.tar.gz
Make libsigc_manual.xml valid
Fix errors reported by "xmllint --postvalid".
-rw-r--r--docs/manual/libsigc_manual.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/manual/libsigc_manual.xml b/docs/manual/libsigc_manual.xml
index d21468c..7f34a06 100644
--- a/docs/manual/libsigc_manual.xml
+++ b/docs/manual/libsigc_manual.xml
@@ -54,10 +54,10 @@ register_click_handler(okbutton, clicked, somedata);
<para>libsigc++ provides the concept of a slot, which holds a reference to one of
the things that can be used as a callback:
<itemizedlist>
- <listitem>A free-standing function as in the example</listitem>
- <listitem>A functor objects that defines operator()</listitem>
- <listitem>A pointer-to-a-member-function and an instance of an object on which to invoke it (the
- object should inherit from <literal remap="tt">sigc::trackable</literal>)</listitem>
+ <listitem><para>A free-standing function as in the example</para></listitem>
+ <listitem><para>A functor objects that defines operator()</para></listitem>
+ <listitem><para>A pointer-to-a-member-function and an instance of an object on which to invoke it (the
+ object should inherit from <literal remap="tt">sigc::trackable</literal>)</para></listitem>
</itemizedlist></para>
<para>All of which can take different numbers and types of arguments.</para>