[libnet-dbus-perl] 312/335: Fix misc spelling errors in the POD docs

Intrigeri intrigeri at moszumanska.debian.org
Sat Mar 21 01:08:14 UTC 2015


This is an automated email from the git hooks/post-receive script.

intrigeri pushed a commit to branch experimental
in repository libnet-dbus-perl.

commit 63da1995cc729522b4552ccead6427becb9c09ec
Author: Xavier Guimard <x.guimard at free.fr>
Date:   Sun Apr 7 12:07:57 2013 +0100

    Fix misc spelling errors in the POD docs
    
    RT #83113
    
    Signed-off-by: Daniel P. Berrange <dan at berrange.com>
---
 AUTHORS                                    | 1 +
 lib/Net/DBus/Binding/Message.pm            | 2 +-
 lib/Net/DBus/Binding/Value.pm              | 2 +-
 lib/Net/DBus/Callback.pm                   | 2 +-
 lib/Net/DBus/Exporter.pm                   | 4 ++--
 lib/Net/DBus/Reactor.pm                    | 4 ++--
 lib/Net/DBus/RemoteObject.pm               | 4 ++--
 lib/Net/DBus/RemoteService.pm              | 2 +-
 lib/Net/DBus/Service.pm                    | 2 +-
 lib/Net/DBus/Test/MockConnection.pm        | 2 +-
 lib/Net/DBus/Test/MockMessage.pm           | 2 +-
 lib/Net/DBus/Test/MockObject.pm            | 2 +-
 lib/Net/DBus/Tutorial/ExportingObjects.pod | 6 +++---
 13 files changed, 18 insertions(+), 17 deletions(-)

diff --git a/AUTHORS b/AUTHORS
index 8d5faef..1172503 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -18,6 +18,7 @@ from
     Mathieu Bridon <bochecha at fedoraproject.org>
     Frank Szczerba <frank at szczerba.net>
     Manuel Reimer <manuel.reimer at gmx.de>
+    Xavier Guimard <x.guimard at free.fr>
 
     [...send patches to get your name here!]
 
diff --git a/lib/Net/DBus/Binding/Message.pm b/lib/Net/DBus/Binding/Message.pm
index 5d2585a..2e799e6 100644
--- a/lib/Net/DBus/Binding/Message.pm
+++ b/lib/Net/DBus/Binding/Message.pm
@@ -215,7 +215,7 @@ sub get_type {
 
 =item my $interface = $msg->get_interface
 
-Retrieves the name of the interface targetted by this message, possibly
+Retrieves the name of the interface targeted by this message, possibly
 an empty string if there is no applicable interface for this message.
 
 =cut
diff --git a/lib/Net/DBus/Binding/Value.pm b/lib/Net/DBus/Binding/Value.pm
index 0973b00..aa9f281 100644
--- a/lib/Net/DBus/Binding/Value.pm
+++ b/lib/Net/DBus/Binding/Value.pm
@@ -53,7 +53,7 @@ use warnings;
 =item my $value = Net::DBus::Binding::Value->new($type, $value);
 
 Creates a wrapper for the perl value C<$value> marking it as having
-the dbus data type C<$type>. It is not neccessary to call this method
+the dbus data type C<$type>. It is not necessary to call this method
 directly, instead the data typing methods in the L<Net::DBus> object
 should be used.
 
diff --git a/lib/Net/DBus/Callback.pm b/lib/Net/DBus/Callback.pm
index c118a14..fedd2fd 100644
--- a/lib/Net/DBus/Callback.pm
+++ b/lib/Net/DBus/Callback.pm
@@ -48,7 +48,7 @@ This module provides a simple container for storing details
 about a callback to be invoked at a later date. It is used
 when registering to receive events from the L<Net::DBus::Reactor>
 class. NB use of this module in application code is no longer
-neccessary and it remains purely for backwards compatability.
+necessary and it remains purely for backwards compatibility.
 Instead you can simply pass a subroutine code reference in
 any place where a callback is desired.
 
diff --git a/lib/Net/DBus/Exporter.pm b/lib/Net/DBus/Exporter.pm
index dde44b9..3ca829c 100644
--- a/lib/Net/DBus/Exporter.pm
+++ b/lib/Net/DBus/Exporter.pm
@@ -532,7 +532,7 @@ sub _validate_interface {
 
 =over 4
 
-=item No paramters, no return values
+=item No parameters, no return values
 
 A method which simply prints "Hello World" each time its called
 
@@ -578,7 +578,7 @@ returns a dictionary containing the last modification times.
 
 =item Annotating methods with metdata
 
-A method which is targetted for removal, and also does not
+A method which is targeted for removal, and also does not
 return any value
 
     sub PlayMP3 {
diff --git a/lib/Net/DBus/Reactor.pm b/lib/Net/DBus/Reactor.pm
index 1f7d5cf..778029b 100644
--- a/lib/Net/DBus/Reactor.pm
+++ b/lib/Net/DBus/Reactor.pm
@@ -125,7 +125,7 @@ use Time::HiRes qw(gettimeofday);
 
 Creates a new event loop ready for monitoring file handles, or
 generating timeouts. Except in very unsual circumstances (examples
-of which I can't think up) it is not neccessary or desriable to
+of which I can't think up) it is not necessary or desriable to
 explicitly create new reactor instances. Instead call the L<main>
 method to get a handle to the singleton instance.
 
@@ -597,7 +597,7 @@ sub remove_timeout {
 =item $reactor->toggle_timeout($id, $status[, $interval]);
 
 Updates the state of a previously registered timeout
-specifed by the C<$id> parameter. The C<$status>
+specified by the C<$id> parameter. The C<$status>
 parameter specifies whether the timeout is to be enabled
 or disabled, while the optional C<$interval> parameter
 can be used to change the period of the timeout.
diff --git a/lib/Net/DBus/RemoteObject.pm b/lib/Net/DBus/RemoteObject.pm
index 78ff6b7..2490f77 100644
--- a/lib/Net/DBus/RemoteObject.pm
+++ b/lib/Net/DBus/RemoteObject.pm
@@ -84,7 +84,7 @@ two interfaces in the object provide methods with the same name, since introspec
 data can be used to automatically resolve the correct interface to call cases where
 method names are unique. Rather than using this constructor directly, it is preferrable
 to use the C<get_object> method on L<Net::DBus::RemoteService>, since this caches handles
-to remote objects, eliminating unneccessary introspection data lookups.
+to remote objects, eliminating unnecessary introspection data lookups.
 
 The C<%params> parameter contains extra configuration parameters for the object. Currently
 a single parameter is supported, C<timeout> which takes a value in milliseconds to use as
@@ -118,7 +118,7 @@ sub new {
 
 Casts the object to a specific interface, returning a new instance of the
 L<Net::DBus::RemoteObject> specialized to the desired interface. It is only
-neccessary to cast objects to a specific interface, if two interfaces
+necessary to cast objects to a specific interface, if two interfaces
 export methods or signals with the same name, or the remote object does not
 support introspection.
 
diff --git a/lib/Net/DBus/RemoteService.pm b/lib/Net/DBus/RemoteService.pm
index 2c05a5d..9aac751 100644
--- a/lib/Net/DBus/RemoteService.pm
+++ b/lib/Net/DBus/RemoteService.pm
@@ -126,7 +126,7 @@ sub get_owner_name {
 Retrieves a handle to the remote object provided by the service  with
 the name of C<$object_path>. If the optional C<$interface> parameter is
 provided, the object will immediately be cast to the designated
-interface. NB, it is only neccessary to cast an object to a specific
+interface. NB, it is only necessary to cast an object to a specific
 interface if there are multiple interfaces on the object providing
 methods with the same name, or the remote object does support
 introspection. The returned object will be an instance of L<Net::DBus::RemoteObject>.
diff --git a/lib/Net/DBus/Service.pm b/lib/Net/DBus/Service.pm
index adfd767..69109bd 100644
--- a/lib/Net/DBus/Service.pm
+++ b/lib/Net/DBus/Service.pm
@@ -63,7 +63,7 @@ use warnings;
 Create a new service, attaching to the bus provided in
 the C<$bus> parameter, which should be an instance of
 the L<Net::DBus> object. The C<$name> parameter is the
-qualified service name. It is not usually neccessary to
+qualified service name. It is not usually necessary to
 use this constructor, since services can be created via
 the C<export_service> method on the L<Net::DBus> object.
 
diff --git a/lib/Net/DBus/Test/MockConnection.pm b/lib/Net/DBus/Test/MockConnection.pm
index 8682668..3a5ffe0 100644
--- a/lib/Net/DBus/Test/MockConnection.pm
+++ b/lib/Net/DBus/Test/MockConnection.pm
@@ -72,7 +72,7 @@ use Net::DBus::Binding::Message::Signal;
 =item my $con = Net::DBus::Test::MockConnection->new()
 
 Create a new mock connection object instance. It is not usually
-neccessary to create instances of this object directly, instead
+necessary to create instances of this object directly, instead
 the C<test> method on the L<Net::DBus> object can be used to
 get a handle to a test bus.
 
diff --git a/lib/Net/DBus/Test/MockMessage.pm b/lib/Net/DBus/Test/MockMessage.pm
index ee78558..f64807d 100644
--- a/lib/Net/DBus/Test/MockMessage.pm
+++ b/lib/Net/DBus/Test/MockMessage.pm
@@ -201,7 +201,7 @@ sub get_error_name {
 
 =item my $interface = $msg->get_interface
 
-Retrieves the name of the interface targetted by this message, possibly
+Retrieves the name of the interface targeted by this message, possibly
 an empty string if there is no applicable interface for this message.
 
 =cut
diff --git a/lib/Net/DBus/Test/MockObject.pm b/lib/Net/DBus/Test/MockObject.pm
index 2308372..b19b7b0 100644
--- a/lib/Net/DBus/Test/MockObject.pm
+++ b/lib/Net/DBus/Test/MockObject.pm
@@ -65,7 +65,7 @@ be tested without actually starting a real bus.
 !!!!! WARNING !!!
 
 This object & its APIs should be considered very experimental at
-this point in time, and no guarentees about future API compatability
+this point in time, and no guarentees about future API compatibility
 are provided what-so-ever. Comments & suggestions on how to evolve
 this framework are, however, welcome & encouraged.
 
diff --git a/lib/Net/DBus/Tutorial/ExportingObjects.pod b/lib/Net/DBus/Tutorial/ExportingObjects.pod
index b6aa9a3..5507cd2 100644
--- a/lib/Net/DBus/Tutorial/ExportingObjects.pod
+++ b/lib/Net/DBus/Tutorial/ExportingObjects.pod
@@ -177,7 +177,7 @@ first parameter. So the earlier code example would be modified to look like:
   use base qw(Net::DBus);
   use Net::DBus::Exporter qw(com.berrange.music.player.manager)
 
-Next up, it is neccessary to provide data types for the parameters and return
+Next up, it is necessary to provide data types for the parameters and return
 values of the methods. The L<Net::DBus::Exporter> module provides a method
 C<dbus_method> for this purpose, which takes three parameter, the name of the
 method being exported, an array reference of parameter types, and an array
@@ -251,7 +251,7 @@ object to all services, under the path C</org/freedesktop/DBus/Exporter>.
 This object implements the C<org.freedesktop.DBus.Exporter> interface
 which has a method C<ListObject>. This enables clients to determine
 a list of all objects exported within a service. While not functionally
-neccessary for most applications, it is none-the-less a useful tool for
+necessary for most applications, it is none-the-less a useful tool for
 developers debugging applications, or wondering what a service provides.
 
 =head1 CONNECTING TO THE BUS
@@ -274,7 +274,7 @@ like:
    my $bus = Net::DBus->find;
    my $player = Music::Player->new($bus);
 
-With the service attached to the bus, it is merely neccessary to run
+With the service attached to the bus, it is merely necessary to run
 the main event processing loop to listen out for & handle incoming
 DBus messages. So the above code is modified to start a simple reactor:
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libnet-dbus-perl.git



More information about the Pkg-perl-cvs-commits mailing list