Luis Felipe Strano Moraes
2011-Apr-15 00:16 UTC
[LLVMdev] Patch to correct typos on LLVM source code
Hi, I've made the attached patch that fixes several typos on the LLVM source code, they were found and fixed by the codespell tool (which was announced at http://www.politreco.com/2011/04/announce-codespell-1-0/ ). The majority of the typos were in comments and a few of them were in debug messages. I've also made another patch to the clang source base, it was sent to the cfe-dev mailing list earlier today. There were a few false positives found by codespell, the most common ones were: FromE -> from ArchType -> archetype isNT -> isn't DefInit -> definite I've gone through the diff and removed all of those false positives, and I've successfully built LLVM afterwards so everything should be OK. The patch was made using the official git mirror and was tested against current svn top of tree. Best regards, --lf PS: Yes, this email is mostly a copy and paste from the one I sent to the cfe-dev mailing list :P -- "I believe in looking reality straight in the eye and denying it." -- Garrison Keillor -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Fixing-typos-on-LLVM-source-code-found-by-the-codesp.patch Type: application/octet-stream Size: 163495 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110414/bdb0c23b/attachment.obj>
On Apr 14, 2011, at 5:16 PM, Luis Felipe Strano Moraes wrote:> Hi, > > I've made the attached patch that fixes several typos on the LLVM > source code, they were found and fixed by the codespell tool (which > was announced at > http://www.politreco.com/2011/04/announce-codespell-1-0/ ). > > The majority of the typos were in comments and a few of them were in debug > messages. I've also made another patch to the clang source base, it > was sent to the cfe-dev mailing list earlier today.Nice, applied in r129558, thanks! -Chris