Skip to content

Commit

Permalink
Doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Aug 7, 2014
1 parent 4bd2cc0 commit 029ae22
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.mkdn
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Reset the walk routine back to the state it was before you walked.
## step

Increments one step forward in the git history, and dispatches the object to the
OnCommit handlers.
`OnCommit` handlers.

If there are more possible steps to take, it will return a true value.

Expand Down
2 changes: 1 addition & 1 deletion lib/Git/PurePerl/Walker.pm
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ sub reset {
=method step
Increments one step forward in the git history, and dispatches the object to the
OnCommit handlers.
C<OnCommit> handlers.
If there are more possible steps to take, it will return a true value.
Expand Down
4 changes: 2 additions & 2 deletions lib/Git/PurePerl/Walker/Role/HasRepo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ has '_repo' => ( isa => GPPW_Repository, is => 'rw', weak_ref => 1 );
Construct an entity for a given repository.
This internally calls L<< C<MooseX::B<Clone>>|MooseX::Clone >> on the current object, passing the _repo
field to its constructor, producing a seperate, disconnected object to work
field to its constructor, producing a separate, disconnected object to work
with.
The rationale behind this is simple: Its very likely users will want one set of
Expand All @@ -73,7 +73,7 @@ multiple repositories.
And as each repository will need to maintain its own state for traversal, they
have to normally manually construct an object for each repository, manually
disconnecting the constructor arugments.
disconnecting the constructor arguments.
This instead is simple:
Expand Down
1 change: 1 addition & 0 deletions maint/perlcritic.rc.gen.pl
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

my @stopwords = (
qw(
repo OnCommit args namespace
)
);
for my $wordlist (@stopwords) {
Expand Down
1 change: 1 addition & 0 deletions misc/perlcritic.deps
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Perl::Critic::Policy::Documentation::PodSpelling~0
Perl::Critic::Policy::Lax::RequireExplicitPackage::ExceptForPragmata~0
Perl::Critic::Policy::Variables::ProhibitUnusedVarsStricter~0
Perl::Critic::ProfileCompiler::Bundle::Bangs~0
Expand Down
1 change: 1 addition & 0 deletions perlcritic.rc
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ allow_includes = 1

[Documentation::PodSpelling]
spell_command = aspell list --lang en_US
stop_words = repo OnCommit args namespace

[Documentation::ProhibitAdjacentLinks]

Expand Down

0 comments on commit 029ae22

Please sign in to comment.