Remove repeated word.

git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@156300 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
index a31f48a..7ed0f5f 100644
--- a/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
+++ b/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
@@ -1407,7 +1407,7 @@
             else if (name.compare("name") == 0)
             {
                 StringExtractor extractor;
-                // The the process name from ASCII hex bytes since we can't 
+                // The process name from ASCII hex bytes since we can't 
                 // control the characters in a process name
                 extractor.GetStringRef().swap(value);
                 extractor.SetFilePos(0);