Skip to content

Commit 568106c

Browse files
authored
[lldb][NFC] Fix comment in lldb/Core/ModuleList.h (#128602)
1 parent 99207ae commit 568106c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lldb/include/lldb/Core/ModuleList.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,11 +326,11 @@ class ModuleList {
326326
void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
327327
VariableList &variable_list) const;
328328

329-
/// Finds the first module whose file specification matches \a file_spec.
329+
/// Finds modules whose file specification matches \a module_spec.
330330
///
331331
/// \param[in] module_spec
332332
/// A file specification object to match against the Module's
333-
/// file specifications. If \a file_spec does not have
333+
/// file specifications. If \a module_spec does not have
334334
/// directory information, matches will occur by matching only
335335
/// the basename of any modules in this list. If this value is
336336
/// NULL, then file specifications won't be compared when
@@ -351,6 +351,7 @@ class ModuleList {
351351
// UUID values is very efficient and accurate.
352352
lldb::ModuleSP FindModule(const UUID &uuid) const;
353353

354+
/// Finds the first module whose file specification matches \a module_spec.
354355
lldb::ModuleSP FindFirstModule(const ModuleSpec &module_spec) const;
355356

356357
void FindSymbolsWithNameAndType(ConstString name,

0 commit comments

Comments
 (0)