diff options
author | Koichi ITO <koic.ito@gmail.com> | 2017-05-03 17:18:57 +0900 |
---|---|---|
committer | Koichi ITO <koic.ito@gmail.com> | 2017-05-03 19:28:56 +0900 |
commit | f5193c0f62eb56555e1ad41e8707b1051137ea08 (patch) | |
tree | 0c6b0ce9d82b674b5102c75c1f463e8d6cdf2492 /lib/bundler/vendor | |
parent | af277266db3fac8c0dd52c8bb0bd2ba63ae78131 (diff) | |
download | bundler-f5193c0f62eb56555e1ad41e8707b1051137ea08.tar.gz |
Fix a typos
Diffstat (limited to 'lib/bundler/vendor')
-rw-r--r-- | lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb | 2 | ||||
-rw-r--r-- | lib/bundler/vendor/thor/lib/thor/base.rb | 2 | ||||
-rw-r--r-- | lib/bundler/vendor/thor/lib/thor/util.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb b/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb index 5195be2152..1f8273cadc 100644 --- a/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +++ b/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb @@ -812,7 +812,7 @@ class Bundler::Persistent::Net::HTTP::Persistent ## # Pipelines +requests+ to the HTTP server at +uri+ yielding responses if a - # block is given. Returns all responses recieved. + # block is given. Returns all responses received. # # See # Net::HTTP::Pipeline[http://docs.seattlerb.org/net-http-pipeline/Net/HTTP/Pipeline.html] diff --git a/lib/bundler/vendor/thor/lib/thor/base.rb b/lib/bundler/vendor/thor/lib/thor/base.rb index a95974a62d..bbd2250de0 100644 --- a/lib/bundler/vendor/thor/lib/thor/base.rb +++ b/lib/bundler/vendor/thor/lib/thor/base.rb @@ -112,7 +112,7 @@ class Bundler::Thor end # Whenever a class inherits from Bundler::Thor or Bundler::Thor::Group, we should track the - # class and the file on Bundler::Thor::Base. This is the method responsable for it. + # class and the file on Bundler::Thor::Base. This is the method responsible for it. # def register_klass_file(klass) #:nodoc: file = caller[1].match(/(.*):\d+/)[1] diff --git a/lib/bundler/vendor/thor/lib/thor/util.rb b/lib/bundler/vendor/thor/lib/thor/util.rb index 5d03177a28..0fe7d4d859 100644 --- a/lib/bundler/vendor/thor/lib/thor/util.rb +++ b/lib/bundler/vendor/thor/lib/thor/util.rb @@ -27,7 +27,7 @@ class Bundler::Thor end # Receives a constant and converts it to a Bundler::Thor namespace. Since Bundler::Thor - # commands can be added to a sandbox, this method is also responsable for + # commands can be added to a sandbox, this method is also responsible for # removing the sandbox namespace. # # This method should not be used in general because it's used to deal with |