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, }