fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit d2f68b4299599870fdd21f3d5f65af7a5b6c0690
parent 6568ff3acd3430cb5b15d2adedb9e9a09fd35031
Author: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Date: Sun, 17 Jun 2018 22:45:24 +0200
choices: Fix a typo ("stings")
Diffstat:
| M | src/choices.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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) {