diff options
author | Tim Smith <tsmith84@gmail.com> | 2015-10-18 20:43:12 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2015-10-18 20:43:12 -0700 |
commit | 1dd6fee90b57951a8d1d6b6618131407452ebd37 (patch) | |
tree | c748086444f0e53f33883faeb6b06ce2a912e9f1 /lib/chef/util | |
parent | 6200bf0d319a236f2ab93e83166919c392a22abf (diff) | |
download | chef-1dd6fee90b57951a8d1d6b6618131407452ebd37.tar.gz |
Capitalize sentences
Diffstat (limited to 'lib/chef/util')
-rw-r--r-- | lib/chef/util/diff.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/util/diff.rb b/lib/chef/util/diff.rb index c2dc6e045c..b8336b5135 100644 --- a/lib/chef/util/diff.rb +++ b/lib/chef/util/diff.rb @@ -64,7 +64,7 @@ class Chef def use_tempfile_if_missing(file) tempfile = nil unless File.exists?(file) - Chef::Log.debug("file #{file} does not exist to diff against, using empty tempfile") + Chef::Log.debug("File #{file} does not exist to diff against, using empty tempfile") tempfile = Tempfile.new("chef-diff") file = tempfile.path end @@ -139,7 +139,7 @@ class Chef return "(new content is binary, diff output suppressed)" if is_binary?(new_file) begin - Chef::Log.debug("running: diff -u #{old_file} #{new_file}") + Chef::Log.debug("Running: diff -u #{old_file} #{new_file}") diff_str = udiff(old_file, new_file) rescue Exception => e |