Fix typos in docs.

This commit is contained in:
Daniel Nichter
2013-03-04 17:56:11 -07:00
parent f7f63555ee
commit 35ab06febe

View File

@@ -1792,7 +1792,7 @@ Called before stalking.
=item before_collect =item before_collect
Called when the L<"--stalk"> trigger occurs, before running a L<"--collect"> Called when the L<"--stalk"> trigger occurs, before running a L<"--collect">
process as a backgrounded subshell. subprocesses in the background.
=item after_collect =item after_collect
@@ -1819,7 +1819,7 @@ this hook is only called if L<"--iterations"> is specified.
For example, a very simple plugin that touches a file when L<"--collect"> For example, a very simple plugin that touches a file when L<"--collect">
is triggered: is triggered:
before_colllect() { before_collect() {
touch /tmp/foo touch /tmp/foo
} }