diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-02-15 21:59:53 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-02-15 21:59:53 +0000 |
commit | 1e1a99fffac551af96df11a9149f40e17f68af42 (patch) | |
tree | a0153ef1583af98d5fcc2fa6e2c1beaf0bd66f71 /lib/Support/FileUtilities.cpp | |
parent | 45d55641fa3af536e48be446647ff51b15109992 (diff) |
Fix spelling
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20201 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/FileUtilities.cpp')
-rw-r--r-- | lib/Support/FileUtilities.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/FileUtilities.cpp b/lib/Support/FileUtilities.cpp index f8191c5121..0a55bc8312 100644 --- a/lib/Support/FileUtilities.cpp +++ b/lib/Support/FileUtilities.cpp @@ -119,7 +119,7 @@ int llvm::DiffFilesWithTolerance(const sys::Path &FileA, double AbsTol, double RelTol, std::string *Error) { try { - // Check for zero length files becasue some systems croak when you try to + // Check for zero length files because some systems croak when you try to // mmap an empty file. size_t A_size = FileA.getSize(); size_t B_size = FileB.getSize(); |