How to Fix an Entry in The Zet
Fix a zet entry using raw sqlite.
Find the rowid:
SELECT rowid, value from wikizet WHERE value like "%investg%";
Use UPDATE
command with REPLACE
to update value.
UPDATE wikizet
set value=REPLACE(value, "investgate", "investigate")
WHERE rowid=5084;