Fix spelling and grammar in a comment.
[oota-llvm.git] / lib / Support / ConstantRange.cpp
index 4a74d4211638d8001d9e802018ce04d6dccaf4b1..0d22b323502174376c92db9023299ea1be7f338f 100644 (file)
@@ -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...