Fix typos.

Summary: Fix a bunch of typos.

Reviewers: clayborg

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D11386

llvm-svn: 242856
This commit is contained in:
Bruce Mitchener
2015-07-22 00:16:02 +00:00
parent a534a31c5e
commit e171da5cb7
32 changed files with 65 additions and 65 deletions

View File

@@ -21,7 +21,7 @@ using namespace lldb_private;
namespace
{
// This is a simple helper class to package up the information needed to return from a Read/Write
// operation function. Since there is alot of code to be run before exit regardless of whether the
// operation function. Since there is a lot of code to be run before exit regardless of whether the
// operation succeeded or failed, combined with many possible return paths, this is the cleanest
// way to represent it.
class ReturnInfo
@@ -251,7 +251,7 @@ ConnectionGenericFile::Read(void *dst, size_t dst_len, uint32_t timeout_usec, ll
}
else
{
// An unknown error occured. Fail out.
// An unknown error occurred. Fail out.
return_info.Set(0, eConnectionStatusError, ::GetLastError());
}
goto finish;