Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix wording
  • Loading branch information
abraxxa committed Mar 30, 2016
1 parent 666635d commit 8133448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/DBDish/Connection.pm6
Expand Up @@ -48,7 +48,7 @@ method prepare(Str $statement, *%args) { ... }
method do(Str $statement, *@params, *%args) {
LEAVE {
with %!Statements{$!last-sth-id} {
warn "'do' should not be used for statements that returns rows"
warn "'do' should not be used for statements that return rows"
unless .Finished;
.dispose;
}
Expand Down Expand Up @@ -87,7 +87,7 @@ method quote-identifier(Str:D $name) {

=begin pod
=head5 _disconnect
The C<_disconnect> method
The C<_disconnect> method
=end pod

method _disconnect() {
Expand Down

1 comment on commit 8133448

@salortiz
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@abraxxa, 👍
I hope my perl6 is better than my english! 😄

Please sign in to comment.