aboutsummaryrefslogtreecommitdiff
path: root/bin/whatis2sqlite.pl
diff options
context:
space:
mode:
Diffstat (limited to 'bin/whatis2sqlite.pl')
-rwxr-xr-xbin/whatis2sqlite.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/whatis2sqlite.pl b/bin/whatis2sqlite.pl
index b91f98d..d5f1c6c 100755
--- a/bin/whatis2sqlite.pl
+++ b/bin/whatis2sqlite.pl
@@ -76,9 +76,9 @@ sub make_sql {
return if $seen{"$page^^$sect"}++;
- # 15.0 has double-quotes in some descriptions.
- $desc =~ s/"/""/g;
+ # 15.0 has single-quotes in some descriptions.
+ $desc =~ s/'/''/g;
print <<EOF
-insert into whatis values (null, "$page", "$sect", "$desc");
+insert into whatis values (null, '$page', '$sect', '$desc');
EOF
}