[Lldb-commits] [lldb] r166259 - /lldb/trunk/include/lldb/Core/Stream.h
Jason Molenda
jmolenda at apple.com
Thu Oct 18 19:18:10 PDT 2012
Author: jmolenda
Date: Thu Oct 18 21:18:10 2012
New Revision: 166259
URL: http://llvm.org/viewvc/llvm-project?rev=166259&view=rev
Log:
typeo fix in comment
Modified:
lldb/trunk/include/lldb/Core/Stream.h
Modified: lldb/trunk/include/lldb/Core/Stream.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/Stream.h?rev=166259&r1=166258&r2=166259&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/Stream.h (original)
+++ lldb/trunk/include/lldb/Core/Stream.h Thu Oct 18 21:18:10 2012
@@ -179,7 +179,7 @@
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 @@
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,
More information about the lldb-commits
mailing list