From: Stephen Tozer Date: Fri, 5 Apr 2019 15:59:07 +0000 (+0000) Subject: [format] Add correct punctuation to comment X-Git-Tag: android-x86-9.0-r1~5049 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=1fc8fc0b09263a9c80bfc4dcd6cf84e0fc117490;p=android-x86%2Fexternal-llvm.git [format] Add correct punctuation to comment Test commit that adds a grammatically correct full stop to a single comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@357771 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-readobj/ObjDumper.cpp b/tools/llvm-readobj/ObjDumper.cpp index f762ff8a844..2009ddeb57a 100644 --- a/tools/llvm-readobj/ObjDumper.cpp +++ b/tools/llvm-readobj/ObjDumper.cpp @@ -130,7 +130,7 @@ void ObjDumper::printSectionAsHex(const object::ObjectFile *Obj, // We are adding the (4 - i) last rows that are 8 characters each. // Then, the (4 - i) spaces that are in between the rows. // Least, if we cut in a middle of a row, we add the remaining characters, - // which is (8 - (k * 2)) + // which is (8 - (k * 2)). if (i < 4) W.startLine() << format("%*c", (4 - i) * 8 + (4 - i) + (8 - (k * 2)), ' ');