correct prototypes in docs
Ricardo Signes [Sat, 15 Sep 2012 02:15:31 +0000 (22:15 -0400)]
Changes
lib/Try/Tiny.pm

diff --git a/Changes b/Changes
index e45b95e..840f0b3 100644 (file)
--- a/Changes
+++ b/Changes
@@ -5,6 +5,8 @@
   - proper exception on erroneous usage of bare catch/finally (RT#81070)
   - proper exception on erroneous use of multiple catch{} blocks
   - clarify exception occuring on unterminated try block (RT#75712)
+  - fix the prototypes shown in docs to match code (RT#79590; thanks, Pushtaev
+    Vadim)
 
 0.12
   - doc fixes
index f36fe2e..54d3417 100644 (file)
@@ -242,7 +242,7 @@ still be invoked.
 
 Once all execution is finished then the C<finally> block, if given, will execute.
 
-=item catch (&;$)
+=item catch (&;@)
 
 Intended to be used in the second argument position of C<try>.
 
@@ -262,7 +262,7 @@ L<Class::Throwable>), you'll need to do:
 
   local $@ = $_;
 
-=item finally (&;$)
+=item finally (&;@)
 
   try     { ... }
   catch   { ... }