From b7314fad5043ddad0a75bcfe7cb68c5e9fffa911 Mon Sep 17 00:00:00 2001 From: Lijun Wang <83639177+lijunwangs@users.noreply.github.com> Date: Sun, 19 Nov 2023 22:59:11 -0800 Subject: [PATCH] Update geyser-plugin-manager/src/geyser_plugin_manager.rs Co-authored-by: Tyera --- geyser-plugin-manager/src/geyser_plugin_manager.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geyser-plugin-manager/src/geyser_plugin_manager.rs b/geyser-plugin-manager/src/geyser_plugin_manager.rs index 4f00ad58c95f11..c904938645bbe5 100644 --- a/geyser-plugin-manager/src/geyser_plugin_manager.rs +++ b/geyser-plugin-manager/src/geyser_plugin_manager.rs @@ -221,7 +221,7 @@ impl GeyserPluginManager { let mut current_plugin = self.plugins.remove(idx); let name = current_plugin.name().to_string(); current_plugin.on_unload(); - // The plugin must be first dropped before dropping the library to avoid crash. + // The plugin must be dropped before the library to avoid a crash. drop(current_plugin); drop(current_lib); info!("Unloaded plugin {name} at idx {idx}");