Skip to content

Commit e5eee18

Browse files
ZdravkoDsawenzel
authored andcommitted
PluginTidyModule copy-paste error fix (#9)
correct copy-pasted names
1 parent 2b9a00e commit e5eee18

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

plugin/PluginTidyModule.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- AliceO2TidyModule.cpp - clang-tidy ----------------------------------===//
1+
//===--- PluginTidyModule.cpp - clang-tidy ----------------------------------===//
22
//
33
// The LLVM Compiler Infrastructure
44
//
@@ -28,12 +28,12 @@ class PluginModule : public ClangTidyModule {
2828

2929
} // namespace plugin
3030

31-
// Register the AliceO2TidyModule using this statically initialized variable.
31+
// Register the PluginTidyModule using this statically initialized variable.
3232
static ClangTidyModuleRegistry::Add<plugin::PluginModule>
33-
X("aliceO2-module", "Adds AliceO2 specific checks");
33+
X("pluginO2-module", "Adds Plugin specific checks");
3434

3535
// This anchor is used to force the linker to link in the generated object file
36-
// and thus register the AliceO2Module.
36+
// and thus register the PluginModule.
3737
volatile int PluginModuleAnchorSource = 0;
3838

3939
} // namespace tidy

0 commit comments

Comments
 (0)