summaryrefslogtreecommitdiff
path: root/src/enchant.h
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2022-12-08 21:14:50 +0000
committerReuben Thomas <rrt@sc3d.org>2022-12-11 19:21:53 +0000
commit62a31ba6c92e684c90529a3ee6dcc2b1e4142a31 (patch)
tree19bacd761fc840e4c5f9c753b4220087949c351f /src/enchant.h
parent7cb091141dbad8e8b31c75b959296929cac13050 (diff)
downloadenchant-62a31ba6c92e684c90529a3ee6dcc2b1e4142a31.tar.gz
Fix potential NULL dereferences (thanks, GCC!)
Also fix some English in the API for enchant_dict_suggest, the implicated function.
Diffstat (limited to 'src/enchant.h')
-rw-r--r--src/enchant.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/enchant.h b/src/enchant.h
index 20e2d24..2211fa4 100644
--- a/src/enchant.h
+++ b/src/enchant.h
@@ -170,8 +170,8 @@ int enchant_dict_check (EnchantDict * dict, const char *const word, ssize_t len)
* @len: The byte length of @word, or -1 for strlen (@word)
* @out_n_suggs: The location to store the # of suggestions returned, or %null
*
- * Will return an %null value if any of those pre-conditions
- * are not met.
+ * Will return a %null value if any of those pre-conditions
+ * is not met.
*
* Returns: A %null terminated list of UTF-8 encoded suggestions, or %null
*/