]> Sergey Matveev's repositories - public-inbox.git/commitdiff
lei_inspect: fix typo
authorEric Wong <e@80x24.org>
Sun, 25 Jul 2021 00:43:31 +0000 (00:43 +0000)
committerEric Wong <e@80x24.org>
Sun, 25 Jul 2021 06:14:05 +0000 (06:14 +0000)
Not sure how this wasn't caught, earlier...

lib/PublicInbox/LeiInspect.pm

index 574da7a7eca8cbaf3f4d54e514c0e13da9193ba8..c277520c03b44eeca3717112607964809f10bc2b 100644 (file)
@@ -74,7 +74,7 @@ sub inspect_docid ($$;$) {
        my $data = $doc->get_data;
        $ent->{docid} = $docid;
        $ent->{data_length} = length($data);
-       $ent->{description} => $doc->get_description;
+       $ent->{description} = $doc->get_description;
        $ent->{$_} = $doc->$_ for (qw(termlist_count values_count));
        my $cur = $doc->termlist_begin;
        my $end = $doc->termlist_end;