Browse code

Merge pull request #86 from neuschaefer/typo

choices: Fix a typo ("stings")

John Hawthorn authored on 18/06/2018 18:19:48 • GitHub committed on 18/06/2018 18:19:48
Showing 1 changed files

... ...
@@ -21,7 +21,7 @@ static int cmpchoice(const void *_idx1, const void *_idx2) {
21 21
 
22 22
 	if (a->score == b->score) {
23 23
 		/* To ensure a stable sort, we must also sort by the string
24
-		 * pointers. We can do this since we know all the stings are
24
+		 * pointers. We can do this since we know all the strings are
25 25
 		 * from a contiguous memory segment (buffer in choices_t).
26 26
 		 */
27 27
 		if (a->str < b->str) {