Skip to content

Commit

Permalink
fixed a few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Sep 26, 2011
1 parent 6fdaa63 commit 54ecaec
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Changes
Expand Up @@ -1871,7 +1871,7 @@ This file documents the revision history for Perl extension Mojolicious.
- Fixed some typos.

0.7 2008-10-11 00:00:00
- Added the Mojolicious Web Framework example.
- Added the Mojolicious web framework example.
- Added upload and GET/POST parameter helpers to Mojo::Message.
- Hooks for upload progress and stuff added.
- Refactored transfer encoding code into Mojo::Filter and
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -237,7 +237,7 @@ __END__
=head1 NAME
Mojolicious - Real-Time Web Framework
Mojolicious - Real-time web framework
=head1 SYNOPSIS
Expand Down
8 changes: 4 additions & 4 deletions lib/Mojolicious/Command/generate/app.pm
Expand Up @@ -66,7 +66,7 @@ use lib join '/', File::Spec->splitdir(dirname(__FILE__)), '..', 'lib';
# Check if Mojolicious is installed
eval 'use Mojolicious::Commands';
die <<EOF if $@;
It looks like you don't have the Mojolicious Framework installed.
It looks like you don't have the Mojolicious framework installed.
Please visit http://mojolicio.us for detailed installation instructions.
EOF
Expand Down Expand Up @@ -109,18 +109,18 @@ sub welcome {
# Render template "example/welcome.html.ep" with message
$self->render(
message => 'Welcome to the Mojolicious Real-Time Web Framework!');
message => 'Welcome to the Mojolicious real-time web framework!');
}
1;
@@ static
<!doctype html><html>
<head>
<title>Welcome to the Mojolicious Real-Time Web Framework!</title>
<title>Welcome to the Mojolicious real-time web framework!</title>
</head>
<body>
<h2>Welcome to the Mojolicious Real-Time Web Framework!</h2>
<h2>Welcome to the Mojolicious real-time web framework!</h2>
This is the static document "public/index.html",
<a href="/welcome">click here</a> to get back to the start.
</body>
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojolicious/Guides/FAQ.pod
Expand Up @@ -10,10 +10,10 @@ L<Mojolicious> together with the right answers.

=head1 QUESTIONS

=head2 How does Mojolicious compare to other Perl Web Frameworks?
=head2 How does Mojolicious compare to other Perl web frameworks?

The short answer is "it doesn't", because we interpret the words
"Web Framework" much more literal than others.
"web framework" much more literal than others.
With the emergence of the C<Real-time Web> and new technologies such as
C<WebSockets>, we are facing new challenges that go way beyond what commonly
used modules like L<LWP> were designed for.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious/Guides/Growing.pod
Expand Up @@ -657,7 +657,7 @@ environments.
# Check if Mojolicious is installed
eval 'use Mojolicious::Commands';
die <<EOF if $@;
It looks like you don't have the Mojolicious Framework installed.
It looks like you don't have the Mojolicious framework installed.
Please visit http://mojolicio.us for detailed installation instructions.

EOF
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojolicious/Lite.pm
Expand Up @@ -73,7 +73,7 @@ __END__
=head1 NAME
Mojolicious::Lite - Micro Real-Time Web Framework
Mojolicious::Lite - Micro real-time web framework
=head1 SYNOPSIS
Expand Down Expand Up @@ -276,7 +276,7 @@ delimited by the C<begin> and C<end> keywords.
Try <%= link_to $url => begin %><%= $name %><% end %>!
% end
<!doctype html><html>
<head><title>Sebastians Frameworks!</title></head>
<head><title>Sebastians frameworks!</title></head>
<body>
%= $link->('http://mojolicio.us', 'Mojolicious')
%= $link->('http://catalystframework.org', 'Catalyst')
Expand Down
2 changes: 1 addition & 1 deletion script/hypnotoad
Expand Up @@ -12,7 +12,7 @@ use lib join '/', File::Spec->splitdir(dirname(__FILE__)), '..', 'lib';
# Check if Mojolicious is installed
eval 'use Mojo::Server::Hypnotoad';
die <<EOF if $@;
It looks like you don't have the Mojolicious Framework installed.
It looks like you don't have the Mojolicious framework installed.
Please visit http://mojolicio.us for detailed installation instructions.
EOF
Expand Down
2 changes: 1 addition & 1 deletion script/mojo
Expand Up @@ -12,7 +12,7 @@ use lib join '/', File::Spec->splitdir(dirname(__FILE__)), '..', 'lib';
# Check if Mojolicious is installed
eval 'use Mojolicious::Commands';
die <<EOF if $@;
It looks like you don't have the Mojolicious Framework installed.
It looks like you don't have the Mojolicious framework installed.
Please visit http://mojolicio.us for detailed installation instructions.
EOF
Expand Down
2 changes: 1 addition & 1 deletion script/morbo
Expand Up @@ -12,7 +12,7 @@ use lib join '/', File::Spec->splitdir(dirname(__FILE__)), '..', 'lib';
# Check if Mojolicious is installed
eval 'use Mojo::Server::Morbo';
die <<EOF if $@;
It looks like you don't have the Mojolicious Framework installed.
It looks like you don't have the Mojolicious framework installed.
Please visit http://mojolicio.us for detailed installation instructions.
EOF
Expand Down
2 changes: 1 addition & 1 deletion t/mojolicious/external/script/my_app
Expand Up @@ -18,7 +18,7 @@ use lib join '/', File::Spec->splitdir(dirname(__FILE__)), '..', 'lib';
# Check if Mojolicious is installed
eval 'use Mojolicious::Commands';
die <<EOF if $@;
It looks like you don't have the Mojolicious Framework installed.
It looks like you don't have the Mojolicious framework installed.
Please visit http://mojolicio.us for detailed installation instructions.
EOF
Expand Down

0 comments on commit 54ecaec

Please sign in to comment.