From: mike Date: Wed, 14 May 2008 13:27:32 +0000 (+0000) Subject: Comment typo. X-Git-Tag: cpan_1_22~6 X-Git-Url: http://sru.miketaylor.org.uk/?a=commitdiff_plain;h=5c23abd4f7418d955f271041c050f49a3c3cdb3b;hp=e2cd0fce90a0a68995b9608fe9e2a5f6ed2a91b5;p=ZOOM-Perl-moved-to-github.git Comment typo. --- diff --git a/samples/zoom/zoomscan.pl b/samples/zoom/zoomscan.pl index 1594879..7b86946 100644 --- a/samples/zoom/zoomscan.pl +++ b/samples/zoom/zoomscan.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -# $Id: zoomscan.pl,v 1.4 2007-08-17 18:35:17 mike Exp $ +# $Id: zoomscan.pl,v 1.5 2008-05-14 13:27:32 mike Exp $ # # This is the scanning counterpart to zoomscan.pl's searching # perl -I../../blib/lib -I../../blib/arch zoomscan.pl @@ -28,7 +28,7 @@ my($host, $scanQuery) = @ARGV; eval { my $conn = new ZOOM::Connection($host, 0); $conn->option(preferredRecordSyntax => "usmarc"); - ### Could use ZOOM::Query::CQL below, but that only work in SRU/W. + ### Could use ZOOM::Query::CQL below, but that only works in SRU/W. my $q = $opts{q} ? new ZOOM::Query::CQL($scanQuery) : new ZOOM::Query::PQF($scanQuery); my $ss = $conn->scan($q);