From: Ruben Kerkhof Date: Fri, 5 Aug 2016 11:42:49 +0000 (+0200) Subject: collectd-python(5): remove semicolons from example X-Git-Tag: collectd-5.6.0~110 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=bf8a30d732662ea480e7401768e1db92d03f1a1c collectd-python(5): remove semicolons from example --- diff --git a/src/collectd-python.pod b/src/collectd-python.pod index 773a6cd4..77f3497b 100644 --- a/src/collectd-python.pod +++ b/src/collectd-python.pod @@ -671,8 +671,8 @@ A very simple write function might look like: To register those functions with collectd: - collectd.register_read(read); - collectd.register_write(write); + collectd.register_read(read) + collectd.register_write(write) See the section L<"CLASSES"> above for a complete documentation of the data types used by the read, write and match functions.