From 4e13f69fa9a5229e367ce653e0c69784d628e4b2 Mon Sep 17 00:00:00 2001 From: Mayur Kale Date: Thu, 1 Aug 2019 18:38:52 -0700 Subject: [PATCH] fix: make comment more descriptive --- .../src/instrumentation/PluginLoader.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/opentelemetry-node-tracer/src/instrumentation/PluginLoader.ts b/packages/opentelemetry-node-tracer/src/instrumentation/PluginLoader.ts index b2e26c0d5fb..6aa4ed7f954 100644 --- a/packages/opentelemetry-node-tracer/src/instrumentation/PluginLoader.ts +++ b/packages/opentelemetry-node-tracer/src/instrumentation/PluginLoader.ts @@ -59,7 +59,8 @@ export class PluginLoader { * {@link Plugin} interface and export an instance named as 'plugin'. This * function will attach a hook to be called the first time the module is * loaded. - * @param pluginConfig an object to configure the plugin. + * @param pluginConfig an object whose keys are plugin names and whose + * boolean values indicate whether to enable the plugin. */ load(pluginConfig: PluginConfig): PluginLoader { if (this._hookState === HookState.UNINITIALIZED) {