Skip Menu |

This queue is for tickets about the Iterator-Simple CPAN distribution.

Report information
The Basics
Id: 72545
Status: resolved
Worked: 5 min
Priority: 0/
Queue: Iterator-Simple

People
Owner: wftk [...] vivtek.com
Requestors: PCMANTZ [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: (no value)
Fixed in: 0.06



Subject: Documentation spelling errors
There are some simple spelling errors in the documentation. Here is a patch to fix them.
Subject: 0001-doc-spelling-fixes.patch
From 0d642fb4bd29eb42502d5164a3e6db271000bd8e Mon Sep 17 00:00:00 2001 From: "Paul C. Mantz" <pcmantz@gmail.com> Date: Fri, 18 Nov 2011 20:36:46 -0600 Subject: [PATCH] doc spelling fixes --- lib/Iterator/Simple.pm | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Iterator/Simple.pm b/lib/Iterator/Simple.pm index 3f6b1aa..c63ed5c 100644 --- a/lib/Iterator/Simple.pm +++ b/lib/Iterator/Simple.pm @@ -569,7 +569,7 @@ return true if C<$object> can be converted with C<iter($object)> =item list($object) -This fuction converts C<$object> into single array referece. +This function converts C<$object> into single array reference. =over 2 @@ -644,7 +644,7 @@ For example: $itr = iter [ 'foo', 'bar', 'baz', 'fiz' ]; $filterd = ifilter $itr, sub { return if $_ eq 'bar'; #skip - retrun iter(['whoa', 'who']) if $_ eq 'baz'; #inflate + return iter(['whoa', 'who']) if $_ eq 'baz'; #inflate return ":$_:"; # modify }; @@ -730,7 +730,7 @@ Just bless $coderef in Iterator::Simple::Iterator and returns it. =item $iterator->next -Call undelying code. +Call underlying code. =item $iterator->__iter__ -- 1.7.5.4
On Fri Nov 18 21:38:19 2011, PCMANTZ wrote: Show quoted text
> There are some simple spelling errors in the documentation.
I've applied your patch and committed it to the Github repo, but I have no idea when I'm going to release a new version yet. (If I'd been thinking clearly I would have rolled this into 0.6 when I took over the module, but there you go, clear thought is always at a premium.) Thanks for the report!