Comment typo fixes
Only comment changes. Removed stray apostrophe from Util::Downloader.initialize() doc block. Corrected open => options for .download! description.
This commit is contained in:
parent
29fa57da6c
commit
accff3689b
|
@ -7,7 +7,7 @@ module Vagrant
|
||||||
module Util
|
module Util
|
||||||
# This class downloads files using various protocols by subprocessing
|
# This class downloads files using various protocols by subprocessing
|
||||||
# to cURL. cURL is a much more capable and complete download tool than
|
# to cURL. cURL is a much more capable and complete download tool than
|
||||||
# a hand-rolled Ruby library, so we defer to it's expertise.
|
# a hand-rolled Ruby library, so we defer to its expertise.
|
||||||
class Downloader
|
class Downloader
|
||||||
# Custom user agent provided to cURL so that requests to URL shorteners
|
# Custom user agent provided to cURL so that requests to URL shorteners
|
||||||
# are properly tracked.
|
# are properly tracked.
|
||||||
|
@ -25,7 +25,7 @@ module Vagrant
|
||||||
end
|
end
|
||||||
|
|
||||||
# This executes the actual download, downloading the source file
|
# This executes the actual download, downloading the source file
|
||||||
# to the destination with the given opens used to initialize this
|
# to the destination with the given options used to initialize this
|
||||||
# class.
|
# class.
|
||||||
#
|
#
|
||||||
# If this method returns without an exception, the download
|
# If this method returns without an exception, the download
|
||||||
|
|
Loading…
Reference in New Issue