typo in docs fixed
David Schmidt [Tue, 12 Oct 2010 14:29:13 +0000 (14:29 +0000)]
lib/Catalyst/Exception/Interface.pm

index 371bfa3..aae67f2 100644 (file)
@@ -27,8 +27,8 @@ Catalyst::Exception::Interface - Role defining the interface for Catalyst except
 
    # This comprises the required interface.
    sub as_string { 'the exception text for stringification' }
-   sub die { shift; die @_ }
-   sub die { shift; die @_ }
+   sub throw { shift; die @_ }
+   sub rethrow { shift; die @_ }
 
 =head1 DESCRIPTION