summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>2018-06-17 22:45:24 +0200
committerJonathan Neuschäfer <j.neuschaefer@gmx.net>2018-06-17 22:57:25 +0200
commit631c9dd38d4f62cbef2e6ac328eb2bd6ee5c2110 (patch)
treeb785fe0aa9753c26e5431ab27635f5014a796314 /src
parent1b3306813c7afcb40cbe4da81e077151cae9ae91 (diff)
choices: Fix a typo ("stings")
Diffstat (limited to 'src')
-rw-r--r--src/choices.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/choices.c b/src/choices.c
index 64f9a8b..a8c24b6 100644
--- a/src/choices.c
+++ b/src/choices.c
@@ -21,7 +21,7 @@ static int cmpchoice(const void *_idx1, const void *_idx2) {
if (a->score == b->score) {
/* To ensure a stable sort, we must also sort by the string
- * pointers. We can do this since we know all the stings are
+ * pointers. We can do this since we know all the strings are
* from a contiguous memory segment (buffer in choices_t).
*/
if (a->str < b->str) {