diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-07-01 21:22:11 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-07-01 21:22:11 +0000 |
commit | d93c4a33395a7d9b960ec64348a07ba204d51017 (patch) | |
tree | 8cb726e00581c790adf105b4f2d8d4d8c1ca9efe /lldb/scripts/Python/interface/SBFileSpec.i | |
parent | 8e9765352888379973132b3e6c2f47b3ba82d7ce (diff) | |
download | bcm5719-llvm-d93c4a33395a7d9b960ec64348a07ba204d51017.tar.gz bcm5719-llvm-d93c4a33395a7d9b960ec64348a07ba204d51017.zip |
Fix typos.
llvm-svn: 212132
Diffstat (limited to 'lldb/scripts/Python/interface/SBFileSpec.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBFileSpec.i | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/scripts/Python/interface/SBFileSpec.i b/lldb/scripts/Python/interface/SBFileSpec.i index 2195434922c..c153f2bd86f 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 @@ For example, the following code 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 @@ public: 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); |