From bcadfee2ad0eb951d88a4c516150122fdf004617 Mon Sep 17 00:00:00 2001 From: Hiroshi Inoue Date: Thu, 12 Apr 2018 05:53:20 +0000 Subject: [NFC] fix trivial typos in documents and comments "is is" -> "is", "if if" -> "if", "or or" -> "or" llvm-svn: 329878 --- llvm/lib/Object/COFFObjectFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Object/COFFObjectFile.cpp') diff --git a/llvm/lib/Object/COFFObjectFile.cpp b/llvm/lib/Object/COFFObjectFile.cpp index b544fa5..e45246b 100644 --- a/llvm/lib/Object/COFFObjectFile.cpp +++ b/llvm/lib/Object/COFFObjectFile.cpp @@ -944,7 +944,7 @@ COFFObjectFile::getPE32PlusHeader(const pe32plus_header *&Res) const { std::error_code COFFObjectFile::getDataDirectory(uint32_t Index, const data_directory *&Res) const { - // Error if if there's no data directory or the index is out of range. + // Error if there's no data directory or the index is out of range. if (!DataDirectory) { Res = nullptr; return object_error::parse_failed; -- cgit v1.1