1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-29 23:29:41 +02:00

Fix comments

This commit is contained in:
Paul Licameli 2020-02-17 20:41:17 -05:00
parent 38f77e5820
commit b423413278
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ public:
// Once the user selects desired paths from FindPluginPaths(),
// a call to DiscoverPluginsAtPath()
// will be made to request registration of one or more plugins. If the module must create
// an instance of the plugin to register it, then then instance should be deleted
// an instance of the plugin to register it, then the instance should be deleted
// after registration.
// May discover more than one plug-in at the path, and
// may call-back with paths not equal to path (perhaps appending

View File

@ -491,7 +491,7 @@ void ModuleManager::RegisterModule(ModuleInterface *inModule)
if (mDynModules.find(id) != mDynModules.end())
{
// TODO: Should we complain about a duplicate registeration????
// TODO: Should we complain about a duplicate registration????
// PRL: Don't leak resources!
module->Terminate();
return;