fix grammar-o, thanks to Duncan for noticing.

llvm-svn: 50047
diff --git a/llvm/lib/Transforms/Scalar/JumpThreading.cpp b/llvm/lib/Transforms/Scalar/JumpThreading.cpp
index 3bca7ff..b68a969 100644
--- a/llvm/lib/Transforms/Scalar/JumpThreading.cpp
+++ b/llvm/lib/Transforms/Scalar/JumpThreading.cpp
@@ -142,7 +142,7 @@
     return false; // Must be an invoke.
   
   // If the terminator of this block is branching on a constant, simplify the
-  // terminator to an unconditional branch.  This can occur do to threading in
+  // terminator to an unconditional branch.  This can occur due to threading in
   // other blocks.
   if (isa<ConstantInt>(Condition)) {
     DOUT << "  In block '" << BB->getNameStart()