diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-08-21 06:23:07 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-08-21 06:23:07 +0000 |
commit | a20756b86b8bb216cf1f1fd7e666dd2e777c9b49 (patch) | |
tree | 11bf742ca92f29d5e15f9ee2b6701dd9e6ef1194 | |
parent | dadaad80525d29e358ffb9e48dcb739c6f3253de (diff) | |
download | ikiwiki-a20756b86b8bb216cf1f1fd7e666dd2e777c9b49.tar ikiwiki-a20756b86b8bb216cf1f1fd7e666dd2e777c9b49.tar.gz |
web commit by ali: Fix a typo
-rw-r--r-- | doc/bugs/prune_causing_taint_mode_failures.mdwn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/bugs/prune_causing_taint_mode_failures.mdwn b/doc/bugs/prune_causing_taint_mode_failures.mdwn index bbbdb1633..fdaeb87c6 100644 --- a/doc/bugs/prune_causing_taint_mode_failures.mdwn +++ b/doc/bugs/prune_causing_taint_mode_failures.mdwn @@ -9,7 +9,7 @@ BEGIN failed--compilation aborted at (eval 5) line 130. I've no idea what's happening (hey, I'm a C programmer), but I've hacked prune() to workaround this as follows: <pre> -use Scalar::Util qw(t>inted); +use Scalar::Util qw(tainted); sub prune ($) { #{{{ my $file=shift; |