uwc: clarified the output
authorRichard Kojedzinszky <krichy@tvnetwork.hu>
Fri, 26 Sep 2014 07:43:00 +0000 (09:43 +0200)
committerRichard Kojedzinszky <krichy@tvnetwork.hu>
Fri, 26 Sep 2014 07:43:00 +0000 (09:43 +0200)
README

diff --git a/README b/README
index be36afe..d86cd2f 100644 (file)
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
 This is a collection of the 'unique word count' implemented in many languages.
 
 All software should read stdin, parse all words in it, and
-count their occurence, and then print the words with highest occurence first and their occurences,
-one by line.
+count their occurence. Then sort the words by their occurence and lexicogrphically, and print the
+word and its occurence line-by-line.
 
 Words should be matched by the regular expression [a-z']+ case insensitive.