Hi,
I'm having a lot of trouble reading a custom Pspell dictionary. I can create/add to it just fine, but no luck reading it. Does this syntax look right?
$pspell_config = pspell_config_create("en");
pspell_config_personal($pspell_config, 'dictionary/dictionary.txt');
$pspell_link = pspell_new_personal($pspell_config, "en");
pspell_check($pspell_link, $string);
I really appreciate the help. Thanks.