Skip to content

Commit 1d521d7

Browse files
committed
address nit comments
1 parent 41b439c commit 1d521d7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lldb/source/Commands/Options.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1413,6 +1413,6 @@ let Command = "statistics dump" in {
14131413
def statistics_dump_all: Option<"all-targets", "a">, Group<1>,
14141414
Desc<"Include statistics for all targets.">;
14151415
def statistics_dump_summary: Option<"summary", "s">, Group<1>,
1416-
Desc<"Dump only high level summary statistics."
1417-
"Exclude targets, modules, breakpoints etc.. details.">;
1416+
Desc<"Dump only high-level summary statistics."
1417+
"Exclude targets, modules, breakpoints etc... details.">;
14181418
}

lldb/source/Target/Statistics.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ json::Value ModuleStats::ToJSON() const {
7575

7676
if (!symfile_modules.empty()) {
7777
json::Array symfile_ids;
78-
for (const auto symfile_id : symfile_modules)
78+
for (const auto symfile_id: symfile_modules)
7979
symfile_ids.emplace_back(symfile_id);
8080
module.try_emplace("symbolFileModuleIdentifiers", std::move(symfile_ids));
8181
}
@@ -131,7 +131,7 @@ json::Value TargetStats::ToJSON(Target &target, bool summary_only) {
131131

132132
json::Array breakpoints_array;
133133
double totalBreakpointResolveTime = 0.0;
134-
// Rport both the normal breakpoint list and the internal breakpoint list.
134+
// Report both the normal breakpoint list and the internal breakpoint list.
135135
for (int i = 0; i < 2; ++i) {
136136
BreakpointList &breakpoints = target.GetBreakpointList(i == 1);
137137
std::unique_lock<std::recursive_mutex> lock;

0 commit comments

Comments
 (0)