Skip to content

Commit

Permalink
spell fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Sep 30, 2009
1 parent 7ccf6dd commit cea432e
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 27 deletions.
4 changes: 2 additions & 2 deletions lib/Plack.pm
Expand Up @@ -37,7 +37,7 @@ run PSGI application code reference with it.
=head2 Plack::Util
L<Plack::Util> contains a lot of utility functions for server
impementors as well as middleware authors.
implementors as well as middleware authors.
=head2 .psgi files
Expand All @@ -64,7 +64,7 @@ servers the wrapped code reference still looks like and behaves
exactly the same as PSGI applications.
L<Plack::Middleware> gives you an easy way to wrap PSGI applications
with a clean API, and compatiblity with L<Plack::Builder> DSL.
with a clean API, and compatibility with L<Plack::Builder> DSL.
=head2 Plack::Builder
Expand Down
5 changes: 4 additions & 1 deletion lib/Plack/Middleware/AccessLog.pm
Expand Up @@ -89,6 +89,9 @@ sub log_line {

__END__
=for stopwords
LogFormat
=head1 NAME
Plack::Middleware::AccessLog - Logs requests like Apache's log format
Expand All @@ -111,7 +114,7 @@ logs request and response details to the logger callback. The format
can be specified using Apache-like format strings (or C<combined> or
C<common> for the default formats).
This middleware uses calculatable content-length by cheking body type,
This middleware uses calculable content-length by checking body type,
and can not log the time taken to serve requests. It also logs the
request B<before> the response is actually sent to the client. Use
L<Plack::Middleware::AccessLog::Timed> if you want to log details
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/AccessLog/Timed.pm
Expand Up @@ -44,7 +44,7 @@ __END__
=head1 NAME
Plack::Middleware::AccessLog::Timed - Logs requests with time and acurate body size
Plack::Middleware::AccessLog::Timed - Logs requests with time and accurate body size
=head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/ContentLength.pm
Expand Up @@ -45,7 +45,7 @@ Plack::Middleware::ContentLength - Adds Content-Length header automatically
Plack::Middleware::ContentLength is a middleware that automatically
adds C<Content-Length> header when it's appropriate i.e. the response
has a content body with calculatable size (array of chunks or a real
has a content body with calculable size (array of chunks or a real
filehandle).
This middleware can also be used as a library from PSGI server
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Response.pm
Expand Up @@ -91,7 +91,7 @@ Plack::Response allows you a way to create PSGI response array ref through a sim
=head1 AUTHOR
Tokuhiro Matsuno E<lt>tokuhirom slkjfd gmail.comE<gt>
Tokuhiro Matsuno
=head1 SEE ALSO
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Util.pm
Expand Up @@ -312,7 +312,7 @@ Given a header array reference, returns a convenient object that has
an instance methods to access C<header_*> functions with an OO
interface. The object holds a reference to the original given
C<$headers> argument and updates the reference accordingly when called
write methds like C<set>, C<push> or C<remove>. It also has C<headers>
write methods like C<set>, C<push> or C<remove>. It also has C<headers>
method that would return the same reference.
=item status_with_no_entity_body
Expand Down
File renamed without changes.
41 changes: 21 additions & 20 deletions xt/01_podspell.t → xt/podspell.t
@@ -1,23 +1,19 @@
use Test::More;
eval q{ use Test::Spelling };
plan skip_all => "Test::Spelling is not installed." if $@;
add_stopwords(map { split /[\s\:\-]/ } <DATA>);
add_stopwords(map { split /[\s\:\-]+/ } <DATA>);
$ENV{LANG} = 'C';
set_spell_cmd("aspell -l en list") if `which aspell`;
all_pod_files_spelling_ok('lib');

__DATA__
Kazuhiro Osawa
yappo <at> shibuya <döt> pl
Plack
Matsuno
Tokuhiro
slkjfd
Tatsuhiko
Miyagawa
dankogai
kogaidan
Kazuhiro Osawa
Tokuhiro Matsuno
Tatsuhiko Miyagawa
API
CGI
Stringifies
FCGI
URI
https
param
Expand All @@ -32,22 +28,17 @@ ServerSimple
app
Mojo
AnyEvent
Coro's
Lehmann
myhttpd
Coro
FastCGI
rackup
Impl
Mojo's
Mojo
prefork
callback
ReverseHTTP
hookout
internet
ReverseHTTP
reversehttp
AIO
Coro
multithread
var
env
Expand All @@ -59,8 +50,18 @@ MockHTTP
backend
CPAN
Perlbal
Kazuho
Oku's
Kazuho Oku
XS
DSL
coroutine
psgi
namespace
filename
OO
natively
reversehttp
Mojo's
stringifies
plackup
implementors
Oku's

0 comments on commit cea432e

Please sign in to comment.