From 020f8097f036697f7c9b32b2700ef3ac95f1e364 Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Wed, 11 Oct 2017 10:07:45 -0700 Subject: [PATCH] uniq completions: fix spelling it's -> its --- share/completions/uniq.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/completions/uniq.fish b/share/completions/uniq.fish index 1e35c9c59..25b026bad 100644 --- a/share/completions/uniq.fish +++ b/share/completions/uniq.fish @@ -13,8 +13,8 @@ if uniq --version > /dev/null ^ /dev/null complete -c uniq -s w -l check-chars --description "Compare only specified number of characters" -r complete -c uniq -l help --description "Display help and exit" complete -c uniq -l version --description "Display version and exit" -else # OS X - complete -c uniq -s c -d 'Precede each output line with count of it\'s occurrence' +else # BSD + complete -c uniq -s c -d 'Precede each output line with count of its occurrence' complete -c uniq -s d -d 'Only print duplicates' complete -c uniq -s f -d 'Avoid comparing first N fields' -x complete -c uniq -s s -d 'Avoid comparing fist N characters' -x