Fix spelling and grammar in a comment.
[oota-llvm.git] / lib / Support / ConstantRange.cpp
index fdfe28aaa95c88289d6cb830422f66f46f271e8a..0d22b323502174376c92db9023299ea1be7f338f 100644 (file)
@@ -2,8 +2,8 @@
 //
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by the LLVM research group and is distributed under
-// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
 //===----------------------------------------------------------------------===//
 //
@@ -464,7 +464,7 @@ ConstantRange ConstantRange::truncate(uint32_t DstTySize) const {
 ///
 void ConstantRange::print(std::ostream &OS) const {
   OS << "[" << Lower.toStringSigned(10) << "," 
-            << Upper.toStringSigned(10) << " )";
+            << Upper.toStringSigned(10) << ")";
 }
 
 /// dump - Allow printing from a debugger easily...