diff options
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/include/lldb/Core/Stream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/include/lldb/Core/Stream.h b/lldb/include/lldb/Core/Stream.h index 3f55afc7f5f..ed227b4b443 100644 --- a/lldb/include/lldb/Core/Stream.h +++ b/lldb/include/lldb/Core/Stream.h @@ -179,7 +179,7 @@ public: int PutPointer (void *ptr); - // Append \a src_len bytes from \s to the stream as hex characters + // Append \a src_len bytes from \a s to the stream as hex characters // (two ascii characters per byte of input data) int PutBytesAsRawHex8 (const void *src, @@ -187,7 +187,7 @@ public: lldb::ByteOrder src_byte_order = lldb::eByteOrderInvalid, lldb::ByteOrder dst_byte_order = lldb::eByteOrderInvalid); - // Append \a src_len bytes from \s to the stream as binary data. + // Append \a src_len bytes from \a s to the stream as binary data. int PutRawBytes (const void *s, size_t src_len, |