fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit 8c362f91162affd464d5ff060f676f9e00a3e5c5
parent cd75a27c2b7646c98016db297bbe50ee36de8f59
Author: John Hawthorn <john@hawthorn.email>
Date: Mon, 18 Jun 2018 11:19:48 -0700
Merge pull request #86 from neuschaefer/typo
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) {