summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2018-06-18 11:19:48 -0700
committerGitHub <noreply@github.com>2018-06-18 11:19:48 -0700
commit2697c02618d908e5bdcae93ab4815b04c49bd25e (patch)
treea790f216ac7a2ee8394df32358ac6593f3c95286 /src
parent98edd5f5c0a8e9469ca46a6c327798babd07e6ab (diff)
parent631c9dd38d4f62cbef2e6ac328eb2bd6ee5c2110 (diff)
Merge pull request #86 from neuschaefer/typo
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) {