From 566ce37a6bad34df390d19f552990e3ad6675b75 Mon Sep 17 00:00:00 2001 From: hakki Date: Sun, 10 Nov 2024 19:31:43 +0100 Subject: [PATCH] invoker: resolves 'https://codeberg.org/topola/topola/pulls/101#issuecomment-2438542' --- src/autorouter/invoker.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/autorouter/invoker.rs b/src/autorouter/invoker.rs index 80ffbc0..e659259 100644 --- a/src/autorouter/invoker.rs +++ b/src/autorouter/invoker.rs @@ -81,11 +81,11 @@ pub enum InvokerError { #[derive(Getters, Dissolve)] /// Structure that manages the execution and history of commands within the autorouting system pub struct Invoker { - /// Returns an reference to used [`Autorouter`] executor + /// Instance for executing desired autorouting commands pub(super) autorouter: Autorouter, - /// Returns a reference to [`History`] of executed commands + /// History of executed commands pub(super) history: History, - /// Returns a reference to currently ongoing command type. + /// Currently ongoing command type. pub(super) ongoing_command: Option, }