Skip to content

Commit

Permalink
various typos\r\rfixes #938
Browse files Browse the repository at this point in the history
  • Loading branch information
action authored and yanick committed Jan 4, 2014
1 parent 9e23f3d commit 74949d2
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion TODO
Expand Up @@ -8,7 +8,7 @@
* headers (a sane Dancer::Header class for all headers, for D::H::PSGI, * D::H::Standalone, D::Request, D::Response);
* rework the concept of D::Engines so we can have multiple D::Serializers loaded at once
* possibility to define a serializer for a route, a list of routes, in a route (locally), ...
* <dams> : nothing should be more global than to a Dancer app. Dancer should not become a bloated MVC, but to be pragmmatic :
* <dams> : nothing should be more global than to a Dancer app. Dancer should not become a bloated MVC, but to be pragmatic :
* a Dancer app should have at most only one template engine attached to it
* a Dancer app should have at most only one session engine attached to it
* a Dancer app should be able to have multiple serializer attached to it
Expand Down
2 changes: 1 addition & 1 deletion lib/Dancer/Cookbook.pod
Expand Up @@ -656,7 +656,7 @@ That way, the appropriate environment config file will be loaded according to
the running environment (if none is specified, it will be 'development').

Note that you can change the running environment using the C<--environment>
commandline switch.
command line switch.

Typically, you'll want to set the following values in a development config file:

Expand Down
2 changes: 1 addition & 1 deletion lib/Dancer/Introduction.pod
Expand Up @@ -320,7 +320,7 @@ That way, the appropriate environment config file will be loaded according to
the running environment (if none is specified, it will be 'development').

Note that you can change the running environment using the --environment
commandline switch.
command line switch.

Typically, you'll want to set the following values in a development config
file:
Expand Down
2 changes: 1 addition & 1 deletion lib/Dancer/Object.pm
Expand Up @@ -32,7 +32,7 @@ my $_attrs_per_class = {};
sub get_attributes {
my ($class, $visited_parents) = @_;
# $visited_parents keeps track of parent classes we already handled, to
# avoid infinite recursion (in case of dependancies loop). It's not stored as class singleton, otherwise
# avoid infinite recursion (in case of dependencies loop). It's not stored as class singleton, otherwise
# get_attributes wouldn't be re-entrant.
$visited_parents ||= {};
my @attributes = @{$_attrs_per_class->{$class} || [] };
Expand Down
2 changes: 1 addition & 1 deletion lib/Dancer/Plugins.pod
Expand Up @@ -24,7 +24,7 @@ should be.

=item L<Dancer::Plugin::DBIC>

Provides easy acces to DBIx::Class database virtualization.
Provides easy access to DBIx::Class database virtualization.

=item L<Dancer::Plugin::Auth::RBAC>

Expand Down
2 changes: 1 addition & 1 deletion lib/Dancer/Serializer/Abstract.pm
Expand Up @@ -8,7 +8,7 @@ use base 'Dancer::Engine';
sub serialize { confess 'must be implemented' }
sub deserialize { confess 'must be implemented' }

# must be implemented to delcare if the serializer can be used or not
# must be implemented to declare if the serializer can be used or not
# most of the time, just use :
# Dancer::ModuleLoader->load('Your::Serializer::Deps');
sub loaded {0}
Expand Down
2 changes: 1 addition & 1 deletion script/dancer
Expand Up @@ -966,7 +966,7 @@ auto_reload: 0
'production.yml' =>
'# configuration file for production environment
# only log warning and error messsages
# only log warning and error messages
log: "warning"
# log message to a file in logs/
Expand Down

0 comments on commit 74949d2

Please sign in to comment.