1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
Description: Fix spelling errors in POD and README
Author: Alex Muntada <alexm@alexm.org>
Forwarded: https://github.com/n4kz/File-Dropbox/pull/3
Bug: https://github.com/n4kz/File-Dropbox/pull/3
--- a/lib/File/Dropbox.pm
+++ b/lib/File/Dropbox.pm
@@ -633,7 +633,7 @@
L<syswrite|perlfunc/syswrite>, L<print|perlfunc/print>, L<printf|perlfunc/printf>, L<say|perlfunc/say>.
All API requests are done using L<Furl> module. For more accurate timeouts L<Net::DNS::Lite> is used, as described in L<Furl::HTTP>. Furl settings
-can be overriden using C<furlopts>.
+can be overridden using C<furlopts>.
=head1 METHODS
@@ -714,7 +714,7 @@
Function returns list of hashrefs representing directory content. Hash fields described in L<Dropbox API
docs|https://www.dropbox.com/developers/core/docs#metadata>. C<$path> defaults to C</>. If there is
-unfinished chunked upload on handle, it will be commited.
+unfinished chunked upload on handle, it will be committed.
foreach my $file (contents($dropbox, '/data')) {
next if $file->{'is_dir'};
@@ -742,7 +742,7 @@
Function is useful for uploading small files (up to 150MB possible) in one request (at least
two API requests required for chunked upload, used in open-write-close sequence). If there is
-unfinished chunked upload on handle, it will be commited.
+unfinished chunked upload on handle, it will be committed.
local $/;
open my $data, '<', '2012.dat' or die $!;
--- a/README
+++ b/README
@@ -61,7 +61,7 @@
All API requests are done using Furl module. For more accurate timeouts
Net::DNS::Lite is used, as described in Furl::HTTP. Furl settings can be
- overriden using "furlopts".
+ overridden using "furlopts".
METHODS
new
@@ -131,7 +131,7 @@
fields described in Dropbox API docs
<https://www.dropbox.com/developers/core/docs#metadata>. $path defaults
to "/". If there is unfinished chunked upload on handle, it will be
- commited.
+ committed.
foreach my $file (contents($dropbox, '/data')) {
next if $file->{'is_dir'};
@@ -158,7 +158,7 @@
Function is useful for uploading small files (up to 150MB possible) in
one request (at least two API requests required for chunked upload, used
in open-write-close sequence). If there is unfinished chunked upload on
- handle, it will be commited.
+ handle, it will be committed.
local $/;
open my $data, '<', '2012.dat' or die $!;
|