[llvm] r246855 - Adding full stops to comments

Ben Craig via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 4 08:28:13 PDT 2015


Author: bcraig
Date: Fri Sep  4 10:28:13 2015
New Revision: 246855

URL: http://llvm.org/viewvc/llvm-project?rev=246855&view=rev
Log:
Adding full stops to comments

Also, test commit

Modified:
    llvm/trunk/unittests/ADT/FoldingSet.cpp

Modified: llvm/trunk/unittests/ADT/FoldingSet.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ADT/FoldingSet.cpp?rev=246855&r1=246854&r2=246855&view=diff
==============================================================================
--- llvm/trunk/unittests/ADT/FoldingSet.cpp (original)
+++ llvm/trunk/unittests/ADT/FoldingSet.cpp Fri Sep  4 10:28:13 2015
@@ -24,11 +24,11 @@ TEST(FoldingSetTest, UnalignedStringTest
   SCOPED_TRACE("UnalignedStringTest");
 
   FoldingSetNodeID a, b;
-  // An aligned string
+  // An aligned string.
   std::string str1= "a test string";
   a.AddString(str1);
 
-  // An unaligned string
+  // An unaligned string.
   std::string str2 = ">" + str1;
   b.AddString(str2.c_str() + 1);
 




More information about the llvm-commits mailing list