diff -r 8ac8db8dc346 -r 26dd532456cf hgext/eol.py --- a/hgext/eol.py Fri Aug 17 13:58:18 2012 -0700 +++ b/hgext/eol.py Fri Aug 17 13:58:18 2012 -0700 @@ -99,7 +99,7 @@ # Matches a lone LF, i.e., one that is not part of CRLF. singlelf = re.compile('(^|[^\r])\n') # Matches a single EOL which can either be a CRLF where repeated CR -# are removed or a LF. We do not care about old Machintosh files, so a +# are removed or a LF. We do not care about old Macintosh files, so a # stray CR is an error. eolre = re.compile('\r*\n')