From 92eef69556fc81ad1190a418b99a4815877a0b6b Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 20 Jul 2023 13:16:53 +0200 Subject: [PATCH] copr: typo avaiable => available Reported by @siteshwar, thanks. --- dnf5-plugins/copr_plugin/copr_repo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dnf5-plugins/copr_plugin/copr_repo.cpp b/dnf5-plugins/copr_plugin/copr_repo.cpp index af22b4ea1..737f82956 100644 --- a/dnf5-plugins/copr_plugin/copr_repo.cpp +++ b/dnf5-plugins/copr_plugin/copr_repo.cpp @@ -91,7 +91,7 @@ void available_directories_error( message << std::endl; bool first = true; - message << _("You can use one of these avaiable directories:") << std::endl; + message << _("You can use one of these available directories:") << std::endl; for (const auto & available : directories) { if (!first) message << std::endl; @@ -120,7 +120,7 @@ void available_chroots_error( message << " " << attempted << std::endl; } - message << _("You can choose one of the avaiable chroots explicitly:") << std::endl; + message << _("You can choose one of the available chroots explicitly:") << std::endl; for (const auto & available : chroots) { if (!first) message << std::endl;