Fix typos.

llvm-svn: 212132
diff --git a/lldb/scripts/Python/interface/SBFileSpec.i b/lldb/scripts/Python/interface/SBFileSpec.i
index 2195434..c153f2b 100644
--- a/lldb/scripts/Python/interface/SBFileSpec.i
+++ b/lldb/scripts/Python/interface/SBFileSpec.i
@@ -10,7 +10,7 @@
 namespace lldb {
 
 %feature("docstring",
-"Represents a file specfication that divides the path into a directory and
+"Represents a file specification that divides the path into a directory and
 basename.  The string values of the paths are put into uniqued string pools
 for fast comparisons and efficient memory usage.
 
@@ -28,7 +28,7 @@
 
 gets the line entry from the symbol context when a thread is stopped.
 It gets the file spec corresponding to the line entry and checks that
-the filename and the directory matches wat we expect.
+the filename and the directory matches what we expect.
 ") SBFileSpec;
 class SBFileSpec
 {
@@ -37,7 +37,7 @@
 
     SBFileSpec (const lldb::SBFileSpec &rhs);
 
-    SBFileSpec (const char *path);// Deprected, use SBFileSpec (const char *path, bool resolve)
+    SBFileSpec (const char *path);// Deprecated, use SBFileSpec (const char *path, bool resolve)
 
     SBFileSpec (const char *path, bool resolve);
 
diff --git a/lldb/scripts/Python/interface/SBFrame.i b/lldb/scripts/Python/interface/SBFrame.i
index 8f36cec9..b3f0a7a 100644
--- a/lldb/scripts/Python/interface/SBFrame.i
+++ b/lldb/scripts/Python/interface/SBFrame.i
@@ -105,7 +105,7 @@
     /// Get the appropriate function name for this frame. Inlined functions in
     /// LLDB are represented by Blocks that have inlined function information, so
     /// just looking at the SBFunction or SBSymbol for a frame isn't enough.
-    /// This function will return the appriopriate function, symbol or inlined
+    /// This function will return the appropriate function, symbol or inlined
     /// function name for the frame.
     ///
     /// This function returns:
diff --git a/lldb/scripts/Python/interface/SBThread.i b/lldb/scripts/Python/interface/SBThread.i
index 0371f7b..4d69dda 100644
--- a/lldb/scripts/Python/interface/SBThread.i
+++ b/lldb/scripts/Python/interface/SBThread.i
@@ -230,7 +230,7 @@
     /// SBProcess::Continue() is called, any threads that aren't suspended will
     /// be allowed to run. If any of the SBThread functions for stepping are 
     /// called (StepOver, StepInto, StepOut, StepInstruction, RunToAddres), the
-    /// thread will now be allowed to run and these funtions will simply return.
+    /// thread will now be allowed to run and these functions will simply return.
     ///
     /// Eventually we plan to add support for thread centric debugging where
     /// each thread is controlled individually and each thread would broadcast
diff --git a/lldb/scripts/Python/interface/SBValue.i b/lldb/scripts/Python/interface/SBValue.i
index 78e7605..281782b 100644
--- a/lldb/scripts/Python/interface/SBValue.i
+++ b/lldb/scripts/Python/interface/SBValue.i
@@ -179,7 +179,7 @@
     //------------------------------------------------------------------
     /// Get a child value by index from a value.
     ///
-    /// Structs, unions, classes, arrays and and pointers have child
+    /// Structs, unions, classes, arrays and pointers have child
     /// values that can be access by index. 
     ///
     /// Structs and unions access child members using a zero based index
@@ -214,7 +214,7 @@
     ///     The index of the child value to get
     ///
     /// @param[in] use_dynamic
-    ///     An enumeration that specifies wether to get dynamic values,
+    ///     An enumeration that specifies whether to get dynamic values,
     ///     and also if the target can be run to figure out the dynamic
     ///     type of the child value.
     ///
@@ -286,7 +286,7 @@
     ///     The name of the child value to get
     ///
     /// @param[in] use_dynamic
-    ///     An enumeration that specifies wether to get dynamic values,
+    ///     An enumeration that specifies whether to get dynamic values,
     ///     and also if the target can be run to figure out the dynamic
     ///     type of the child value.
     ///