From e529f4d75f3a93c1c7497e6a6ac7aa395c75fc45 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Thu, 12 Sep 2013 01:03:41 -0700 Subject: [PATCH] Fix a comment typo --- complete.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/complete.h b/complete.h index 85208d69a..84b844824 100644 --- a/complete.h +++ b/complete.h @@ -128,7 +128,7 @@ public: completion_t(const completion_t &); completion_t &operator=(const completion_t &); - /* Compare two completions. No operating overlaoding to make this always explicit (there's potentially multiple ways to complare completions). */ + /* Compare two completions. No operating overlaoding to make this always explicit (there's potentially multiple ways to compare completions). */ static bool is_alphabetically_less_than(const completion_t &a, const completion_t &b); static bool is_alphabetically_equal_to(const completion_t &a, const completion_t &b); };