From af1c23cceb6dcf6cde2aeff3ac28d6701761c4a2 Mon Sep 17 00:00:00 2001 From: "Benjamin R. Ginter" Date: Mon, 6 Oct 2014 14:37:26 -0700 Subject: [PATCH] Fix a couple of typos. --- lib/chef/knife/cleanup_versions.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/chef/knife/cleanup_versions.rb b/lib/chef/knife/cleanup_versions.rb index bf84fe6..d5329f9 100644 --- a/lib/chef/knife/cleanup_versions.rb +++ b/lib/chef/knife/cleanup_versions.rb @@ -45,7 +45,7 @@ def run end def cookbooks - ui.msg "Searching for unused cookboks versions..." + ui.msg "Searching for unused cookbook versions..." all_cookbooks = rest.get_rest("/cookbooks?num_versions=all") latest_cookbooks = rest.get_rest("/cookbooks?latest") @@ -108,7 +108,7 @@ def delete_cookbook(cb, cb_ver) end def backup_cookbook(cb,cb_ver,dir) - ui.msg "\nFist backing up cookbook #{cb} version #{cb_ver}" + ui.msg "\nFirst backing up cookbook #{cb} version #{cb_ver}" FileUtils.mkdir_p(dir) dld = Chef::Knife::CookbookDownload.new dld.name_args = [cb, cb_ver]