Skip to content

Commit

Permalink
Fix a few typos in the documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
redhotpenguin committed Sep 13, 2011
1 parent d618075 commit eb8e856
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,3 +1,6 @@
0.2.3 -
* fix a few documentation typos

0.2.2 - Mon Aug 29 15:13:31 EDT 2011
* note https://github.com/omniti-labs/Net--RabbitMQ as the
authoritative repository.
Expand Down
8 changes: 4 additions & 4 deletions RabbitMQ.pm
Expand Up @@ -4,7 +4,7 @@ require DynaLoader;

use strict;
use vars qw($VERSION @ISA);
$VERSION = "0.2.2";
$VERSION = "0.2.3";
@ISA = qw/DynaLoader/;

bootstrap Net::RabbitMQ $VERSION ;
Expand All @@ -26,8 +26,8 @@ Net::RabbitMQ - interact with RabbitMQ over AMQP using librabbitmq
=head1 DESCRIPTION
C<Net::RabbitMQ> provides a simple wrapper around the librabbitmq library
that allows connecting, delcaring exchanges and queues, binding and unbinding
queues, publising, consuming and receiving events.
that allows connecting, declaring exchanges and queues, binding and unbinding
queues, publishing, consuming and receiving events.
Error handling in this module is primarily achieve by Perl_croak (die). You
should be making good use of eval around these methods to ensure that you
Expand Down Expand Up @@ -263,7 +263,7 @@ C<$channel> is a channel that has been opened with C<channel_open>.
C<$queuename> is the queue to be purged.
C<$no_wait> a boolean specifying if the call should not wait for
the server to acknowledge the acknoledgement.
the server to acknowledge the acknowledgement.
=item tx_select($channel)
Expand Down

0 comments on commit eb8e856

Please sign in to comment.