Skip to content

Commit 49933b2

Browse files
committed
Change comments to be imperative
1 parent 15e07ce commit 49933b2

File tree

1 file changed

+3
-3
lines changed
  • lldb/include/lldb/Utility

1 file changed

+3
-3
lines changed

lldb/include/lldb/Utility/UUID.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class UUID {
2828
public:
2929
UUID() = default;
3030

31-
/// Creates a uuid from the data pointed to by the bytes argument.
31+
/// Create a uuid from the data pointed to by the bytes argument.
3232
UUID(llvm::ArrayRef<uint8_t> bytes) : m_bytes(bytes) {
3333
if (llvm::all_of(m_bytes, [](uint8_t b) { return b == 0; })) {
3434
Clear();
@@ -51,7 +51,7 @@ class UUID {
5151
/// Create a UUID from CvRecordPdb70.
5252
UUID(CvRecordPdb70 debug_info);
5353

54-
/// Creates a UUID from the data pointed to by the bytes argument.
54+
/// Create a UUID from the data pointed to by the bytes argument.
5555
UUID(const void *bytes, uint32_t num_bytes) {
5656
if (!bytes)
5757
return;
@@ -88,7 +88,7 @@ class UUID {
8888
DecodeUUIDBytesFromString(llvm::StringRef str,
8989
llvm::SmallVectorImpl<uint8_t> &uuid_bytes);
9090

91-
/// Generate a random UUID.
91+
/// Create a random UUID.
9292
static llvm::Expected<UUID> Generate();
9393

9494
private:

0 commit comments

Comments
 (0)