Closed alaminfirdows closed 11 months ago
I noticed an issue in the readme file where the example for fuzziness was incorrect. It incorrectly sets the "fuzziness" attribute, which doesn't exist. Instead, it should call the "fuzziness" method.
❌ $tnt->fuzziness = true; ✅ $tnt->fuzziness(true);
$tnt->fuzziness = true;
$tnt->fuzziness(true);
This pull request (PR) corrects the example by using the appropriate methods.
Resolved: https://github.com/teamtnt/tntsearch/issues/300
thanks for spotting this
I noticed an issue in the readme file where the example for fuzziness was incorrect. It incorrectly sets the "fuzziness" attribute, which doesn't exist. Instead, it should call the "fuzziness" method.
❌
$tnt->fuzziness = true;
✅$tnt->fuzziness(true);
This pull request (PR) corrects the example by using the appropriate methods.
Resolved: https://github.com/teamtnt/tntsearch/issues/300