Skip to content

Commit fc1e911

Browse files
[lldb] ensure comment conforms to LLVM guidelines (#170533)
This patch is a follow up to llvm/llvm-project#170471.
1 parent 671a8ce commit fc1e911

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ ProcessSP ProcessWindows::CreateInstance(lldb::TargetSP target_sp,
8282
const FileSpec *crash_file_path,
8383
bool can_connect) {
8484
if (crash_file_path)
85-
return nullptr; // Cannot create a Windows process from a crash_file
85+
return nullptr; // Cannot create a Windows process from a crash_file.
8686
return ProcessSP(new ProcessWindows(target_sp, listener_sp));
8787
}
8888

lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ lldb::ProcessSP ProcessGDBRemote::CreateInstance(
211211
lldb::TargetSP target_sp, ListenerSP listener_sp,
212212
const FileSpec *crash_file_path, bool can_connect) {
213213
if (crash_file_path)
214-
return nullptr; // Cannot create a GDBRemote process from a crash_file
214+
return nullptr; // Cannot create a GDBRemote process from a crash_file.
215215
return lldb::ProcessSP(new ProcessGDBRemote(target_sp, listener_sp));
216216
}
217217

0 commit comments

Comments
 (0)