From a0f1765cdc2c5e29112c0f127fe82baedc79050f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Mon, 17 Jul 2023 10:19:04 +0100 Subject: [PATCH] Fix typos --- rust/agama-dbus-server/src/questions.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rust/agama-dbus-server/src/questions.rs b/rust/agama-dbus-server/src/questions.rs index efb06d4326..92f6ca6c58 100644 --- a/rust/agama-dbus-server/src/questions.rs +++ b/rust/agama-dbus-server/src/questions.rs @@ -249,9 +249,9 @@ impl Questions { /// tries to provide answer to question using answer strategies /// - /// What happens underhood is that it user answer_strategies vector + /// What happens under the hood is that it uses answer_strategies vector /// and try to find the first strategy that provides answer. When - /// aswer is provided, it returns immediatelly. + /// answer is provided, it returns immediately. fn fill_answer(&self, question: &mut GenericQuestion) { for strategy in self.answer_strategies.iter() { match strategy.answer(question) { @@ -266,9 +266,9 @@ impl Questions { /// tries to provide answer to question using answer strategies /// - /// What happens underhood is that it user answer_strategies vector + /// What happens under the hood is that it uses answer_strategies vector /// and try to find the first strategy that provides answer. When - /// aswer is provided, it returns immediatelly. + /// answer is provided, it returns immediately. fn fill_answer_with_password(&self, question: &mut WithPassword) { for strategy in self.answer_strategies.iter() { let (answer, password) = strategy.answer_with_password(question);