Code

collectd-python.conf(5): fix register_* argument description
authorIdan Kamara <idankk86@gmail.com>
Wed, 24 Oct 2012 09:31:48 +0000 (11:31 +0200)
committerFlorian Forster <octo@collectd.org>
Sat, 10 Nov 2012 08:02:31 +0000 (09:02 +0100)
Signed-off-by: Florian Forster <octo@collectd.org>
src/collectd-python.pod

index ef2e6bd3c6f9a855d6d61a058f019a7a73de88de..39503ad0ba15dfb89ceaf66606ab3afeca442328 100644 (file)
@@ -534,9 +534,12 @@ your callback, not even None.
 I<name> is an optional identifier for this callback. The default name is
 B<python>.I<module>. I<module> is taken from the B<__module__> attribute of
 your callback function. Every callback needs a unique identifier, so if you
-want to register the same callback multiple time in the same module you need to
-specify a name here. Otherwise it's save to ignore this parameter I<identifier>
-is the full identifier assigned to this callback.
+want to register the same callback multiple times in the same module you need to
+specify a name here. Otherwise it's safe to ignore this parameter.
+
+=item
+
+I<identifier> is the full identifier assigned to this callback.
 
 =back