Fix a doc typo.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Exception / Interface.pm
index 65d5a54..10bfc0f 100644 (file)
@@ -22,12 +22,12 @@ Catalyst::Exception::Interface - Exception for redispatching using $ctx->detach(
    package My::Catalyst::Like::Exception;
    use Moose;
    use namespace::clean -except => 'meta';
-   
+
    # This comprises the required interface.
    sub as_string { 'the exception text for stringification' }
    sub die { shift; die @_ }
    sub die { shift; die @_ }
-   
+
    with 'Catalyst::Exception::Interface';
 
 See also L<Catalyst> and L<Catalyst::Exception>.