Skip to content

Commit

Permalink
QSocModuleManager: Update removal method documentation
Browse files Browse the repository at this point in the history
- Corrected terminology in 'remove' method comments.
- Changed 'module files' to 'library files' for clarity.

Signed-off-by: Huang Rui <vowstar@gmail.com>
  • Loading branch information
vowstar committed Nov 25, 2023
1 parent d76e6e9 commit f0ff45b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/qsocmodulemanager.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public slots:
bool remove(const QString &libraryName);
/**
* @brief Remove libraries matching a regex pattern
* @details Removes all module files from the module directory that
* @details Removes all library files from the module directory that
* match `libraryNameRegex`. This method is ideal for batch
* removal of libraries based on naming patterns. It relies on
* a valid projectManager to execute.
Expand All @@ -174,7 +174,7 @@ public slots:
bool remove(const QRegularExpression &libraryNameRegex = QRegularExpression(".*"));
/**
* @brief Remove multiple libraries by a list of basenames
* @details Removes multiple module files specified in `libraryNameList`
* @details Removes multiple library files specified in `libraryNameList`
* from the module directory. Useful for deleting a specific set of
* module files. Requires a valid projectManager and checks each
* module file's existence.
Expand Down

0 comments on commit f0ff45b

Please sign in to comment.