From 1fc8fc0b09263a9c80bfc4dcd6cf84e0fc117490 Mon Sep 17 00:00:00 2001 From: Stephen Tozer Date: Fri, 5 Apr 2019 15:59:07 +0000 Subject: [PATCH] [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 --- tools/llvm-readobj/ObjDumper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)), ' '); -- 2.50.1