summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2019-12-10 09:35:01 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2019-12-10 09:35:01 +0100
commitb18ebf48ea73afdda86215121c5432ca509d424e (patch)
treefee12a30ed23022b3a230c58590cb7d95995ecae
parent4cfdf8abe3c87b9298d26d2a30d62f21c66f8c7f (diff)
downloadsigc++-b18ebf48ea73afdda86215121c5432ca509d424e.tar.gz
Make libsigc_manual.xml valid
Fix errors reported by "xmllint --postvalid".
-rw-r--r--docs/docs/manual/libsigc_manual.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/docs/manual/libsigc_manual.xml b/docs/docs/manual/libsigc_manual.xml
index ec46dec..1dd82a3 100644
--- a/docs/docs/manual/libsigc_manual.xml
+++ b/docs/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>