From: Arthur Axel 'fREW' Schmidt Date: Tue, 20 May 2014 19:15:30 +0000 (-0500) Subject: fix silly typo X-Git-Tag: v0.021~9 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FWeb-Simple.git;a=commitdiff_plain;h=3da8f8c40ba66a5035e74e0888e991043e2092bd fix silly typo --- diff --git a/lib/Web/Simple.pm b/lib/Web/Simple.pm index 715cd3e..d5ca0e2 100644 --- a/lib/Web/Simple.pm +++ b/lib/Web/Simple.pm @@ -245,7 +245,7 @@ route is to provide a Dancer like key-value list: my $self = shift; ( '.html' => sub { response_filter { $self->render_zoom($_[0]) } }, - '/user/*' => sub { $self->users->get($_[1]) }< + '/user/*' => sub { $self->users->get($_[1]) }, ) }