Skip Menu |

This queue is for tickets about the Plucene CPAN distribution.

Report information
The Basics
Id: 13727
Status: resolved
Priority: 0/
Queue: Plucene

People
Owner: Nobody in particular
Requestors: mintywalker [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.22
Fixed in: 1.23



Subject: three minor pod typos
see attached patch. three typos in the pod for lib/Plucene.pm
--- Plucene.pm 2005-07-15 19:29:17.000000000 +0100 +++ patched.Plucene.pm 2005-07-15 21:44:42.000000000 +0100 @@ -9,8 +9,8 @@ =head2 Create Documents by adding Fields: my $doc = Plucene::Document->new; - $doc->add(Plucene::Document::Field->Text("content", $content); - $doc->add(Plucene::Document::Field->Text("author", "Your Name"); + $doc->add(Plucene::Document::Field->Text("content", $content)); + $doc->add(Plucene::Document::Field->Text("author", "Your Name")); =head2 Choose Your Analyser and add documents to an Index Writer @@ -28,7 +28,7 @@ }); my $query = $parser->parse('author:"Your Name"'); -=hdea3 Then pass the Query to an IndexSearcher and collect hits +=head3 Then pass the Query to an IndexSearcher and collect hits my $searcher = Plucene::Search::IndexSearcher->new("my_index");