projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
958f777
)
collectd-python(5): remove semicolons from example
author
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Fri, 5 Aug 2016 11:42:49 +0000
(13:42 +0200)
committer
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Fri, 5 Aug 2016 11:42:49 +0000
(13:42 +0200)
src/collectd-python.pod
patch
|
blob
|
history
diff --git
a/src/collectd-python.pod
b/src/collectd-python.pod
index
773a6cd
..
77f3497
100644
(file)
--- 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.