From c4a27650b4a31ed69636ebda9ecf2afc9541f28b Mon Sep 17 00:00:00 2001 From: ty221 Date: Sat, 27 Dec 2014 10:49:09 +0100 Subject: [PATCH] Improved accuracy of message As written there: https://factor.cc/pad/p/sup-ideas using "loaded" instead of "found" is more accurate, because if something isn't found,that doesn't mean it doesn't exist. --- lib/sup/modes/thread_index_mode.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sup/modes/thread_index_mode.rb b/lib/sup/modes/thread_index_mode.rb index 71d3fed64..3f0b2e494 100644 --- a/lib/sup/modes/thread_index_mode.rb +++ b/lib/sup/modes/thread_index_mode.rb @@ -730,7 +730,7 @@ def load_threads opts={} opts[:when_done].call(num) if opts[:when_done] if num > 0 - BufferManager.flash "Found #{num.pluralize 'thread'}." + BufferManager.flash "Loaded #{num.pluralize 'thread'}." else BufferManager.flash "No matches." end