Spelling changes applied from lldb_spelling.diffs from Bruce Mitchener.
Thanks Bruce!
llvm-svn: 123083
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
index 1f4d63d..07ee8d9 100644
--- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
@@ -164,7 +164,7 @@
//class ScopedValueChanger
//{
//public:
-// // Take a value reference and the value to assing it to when this class
+// // Take a value reference and the value to assign it to when this class
// // instance goes out of scope.
// ScopedValueChanger (_Tp &value_ref, _Tp value) :
// m_value_ref (value_ref),
@@ -180,7 +180,7 @@
// m_value_ref = m_value;
// }
//protected:
-// _Tp &m_value_ref; // A reference to the value we wil change when this object destructs
+// _Tp &m_value_ref; // A reference to the value we will change when this object destructs
// _Tp m_value; // The value to assign to m_value_ref when this goes out of scope.
//};