On Tue, Apr 22, 2014 at 4:19 AM, Eric Blake <eblake(a)redhat.com> wrote:
On 04/20/2014 02:07 PM, Nehal J Wani wrote:
> Fix minor typos in source comments
>
> ---
Thanks for doing this! Any particular tool you used for finding these?
Thanks for the review.
Well, not exactly a tool, but I had a list of most common misspellings
(scraped from Wikipedia, etc) and then in the source tree:
for i in `cat /tmp/bad_words | awk '{print $1}'` ; do echo " $i ";
grep " $i " -r ./* ; done
I deliberately didn't touch the errors in news.html.in because it
directly copies the commit messages. So, if we have a spell error in
the git log and the same is not present in this file, I thought maybe
inconsistency issues will arise.
--
Nehal J Wani