Skip to content

Commit

Permalink
Merge pull request #8 from zdk/master
Browse files Browse the repository at this point in the history
Correct Plack::Util::Accessor module name
  • Loading branch information
miyagawa committed Oct 16, 2012
2 parents 11abc24 + ca4e85a commit c8b10bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en/23_write_your_own_middleware.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ So that was a good example of writing your own middleware in `.psgi`. If it is o
package Plack::Middleware::FakeUserAgent;
use strict;
use parent qw(Plack::Middleware);
use Plack::Util::Accessors qw(agent);
use Plack::Util::Accessor qw(agent);

sub call {
my($self, $env) = @_;
Expand Down

0 comments on commit c8b10bc

Please sign in to comment.