Skip Menu |

This queue is for tickets about the Text-Cloze CPAN distribution.

Report information
The Basics
Id: 65392
Status: new
Priority: 0/
Queue: Text-Cloze

People
Owner: Nobody in particular
Requestors: ashabunin [...] ics.perm.ru
Cc:
AdminCc:

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



Subject: Text::Cloze - is configuration option max implemented?
Date: Thu, 3 Feb 2011 15:05:43 +0500
To: <bug-text-cloze [...] rt.cpan.org>
From: "Shabunin Anton" <ashabunin [...] ics.perm.ru>
I need to cloze only 1 word in 2nd position: ==================================================== use Text::Cloze; my $text = "There was nothing. Nothing else to do. Alice soon began."; my $pos = 2; my $cloze = Text::Cloze->new ( word => $pos, max => 1, ); my $clozed = $cloze->( $text ); print $clozed; ==================================================== I searched in module source file Cloze.pm and did not find any reference to "max" option Is it implemented?