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/http | |
parent | 6200bf0d319a236f2ab93e83166919c392a22abf (diff) | |
download | chef-1dd6fee90b57951a8d1d6b6618131407452ebd37.tar.gz |
Capitalize sentences
Diffstat (limited to 'lib/chef/http')
-rw-r--r-- | lib/chef/http/decompressor.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/http/decompressor.rb b/lib/chef/http/decompressor.rb index e1d776da60..a61f510e7d 100644 --- a/lib/chef/http/decompressor.rb +++ b/lib/chef/http/decompressor.rb @@ -79,10 +79,10 @@ class Chef else case response[CONTENT_ENCODING] when GZIP - Chef::Log.debug "decompressing gzip response" + Chef::Log.debug "Decompressing gzip response" Zlib::Inflate.new(Zlib::MAX_WBITS + 16).inflate(response.body) when DEFLATE - Chef::Log.debug "decompressing deflate response" + Chef::Log.debug "Decompressing deflate response" Zlib::Inflate.inflate(response.body) else response.body |