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");