From 6775b61633be3f9177f9645ea3e3b8b103c0e02a Mon Sep 17 00:00:00 2001 From: Philipp Eder Date: Tue, 14 Nov 2023 11:06:50 +0100 Subject: [PATCH] Refactor: typo in description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Juan José Nicola --- rust/plugin-scheduler/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/plugin-scheduler/src/error.rs b/rust/plugin-scheduler/src/error.rs index 61b5b749e..26303b6c9 100644 --- a/rust/plugin-scheduler/src/error.rs +++ b/rust/plugin-scheduler/src/error.rs @@ -18,7 +18,7 @@ where /// A plugin is missing in the PluginCollection. PluginNotFound(Vec, String), - /// An error in the plugin execution error. Plugins corresponds to Categories. These categories + /// An error in the plugin execution error. Plugins belong to Categories. These categories /// are ran in a specific order, like category 1 runs before category 2. When a plugin of /// category 1 has a dependency to a plugin of category 2, it is impossible to run the /// dependency plugin before its dependant.