[lldb] Add trailing dots to comments in Value.cpp

Reviewers: JDevlieghere

Reviewed By: JDevlieghere

Subscribers: JDevlieghere, lldb-commits

Tags: #upstreaming_lldb_s_downstream_patches, #lldb

Differential Revision: https://reviews.llvm.org/D69717
This commit is contained in:
Raphael Isemann 2019-11-04 08:35:56 +01:00
parent 8d7ccb3744
commit 80bf88d8bc
1 changed files with 2 additions and 2 deletions

View File

@ -507,10 +507,10 @@ Status Value::GetValueAsData(ExecutionContext *exe_ctx, DataExtractor &data,
return error;
}
// If we got here, we need to read the value from memory
// If we got here, we need to read the value from memory.
size_t byte_size = GetValueByteSize(&error, exe_ctx);
// Bail if we encountered any errors getting the byte size
// Bail if we encountered any errors getting the byte size.
if (error.Fail())
return error;