summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-11-13 16:35:26 -0800
committerTim Smith <tsmith84@gmail.com>2020-11-13 16:35:26 -0800
commitecf9d5c00f87c332ec360b31ef49f7e5ea3d1aa2 (patch)
tree2d28485942ad2bf73614b8f548c687236856f341
parent2b31c74dd5d2cf4d16c44e4d33d465ffa3b74e28 (diff)
downloadchef-ecf9d5c00f87c332ec360b31ef49f7e5ea3d1aa2.tar.gz
Fix comment typo
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/provider/package/zypper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/package/zypper.rb b/lib/chef/provider/package/zypper.rb
index a62f4ac6ee..a1a433cbdf 100644
--- a/lib/chef/provider/package/zypper.rb
+++ b/lib/chef/provider/package/zypper.rb
@@ -104,7 +104,7 @@ class Chef
next if version == "Version" # header
# sometimes even though we request a specific version in the search string above and have match exact, we wind up
- # with other versions in the ouput, particularly getting the installed version when downgrading.
+ # with other versions in the output, particularly getting the installed version when downgrading.
if new_version
next unless version == new_version || version.start_with?("#{new_version}-")
end