Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct Plack::Util::Accessor module name #8

Merged
merged 2 commits into from Oct 16, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion en/23_write_your_own_middleware.md
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; package Plack::Middleware::FakeUserAgent;
use strict; use strict;
use parent qw(Plack::Middleware); use parent qw(Plack::Middleware);
use Plack::Util::Accessors qw(agent); use Plack::Util::Accessor qw(agent);


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