mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix typo: duplicated the [skip-ci]
This commit is contained in:
parent
162cf2879a
commit
b1678338e5
5 changed files with 5 additions and 5 deletions
|
@ -57,7 +57,7 @@ class CGI
|
||||||
#
|
#
|
||||||
# name:: the name of the cookie. Required.
|
# name:: the name of the cookie. Required.
|
||||||
# value:: the cookie's value or list of values.
|
# value:: the cookie's value or list of values.
|
||||||
# path:: the path for which this cookie applies. Defaults to the
|
# path:: the path for which this cookie applies. Defaults to
|
||||||
# the value of the +SCRIPT_NAME+ environment variable.
|
# the value of the +SCRIPT_NAME+ environment variable.
|
||||||
# domain:: the domain for which this cookie applies.
|
# domain:: the domain for which this cookie applies.
|
||||||
# expires:: the time at which this cookie expires, as a +Time+ object.
|
# expires:: the time at which this cookie expires, as a +Time+ object.
|
||||||
|
|
|
@ -323,7 +323,7 @@ module Net::HTTPHeader
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns "true" if the "transfer-encoding" header is present and
|
# Returns "true" if the "transfer-encoding" header is present and
|
||||||
# set to "chunked". This is an HTTP/1.1 feature, allowing the
|
# set to "chunked". This is an HTTP/1.1 feature, allowing
|
||||||
# the content to be sent in "chunks" without at the outset
|
# the content to be sent in "chunks" without at the outset
|
||||||
# stating the entire content length.
|
# stating the entire content length.
|
||||||
def chunked?
|
def chunked?
|
||||||
|
|
|
@ -264,7 +264,7 @@ RSpec.describe "bundle binstubs <gem>" do
|
||||||
end
|
end
|
||||||
|
|
||||||
context "when using --shebang" do
|
context "when using --shebang" do
|
||||||
it "sets the specified shebang for the the binstub" do
|
it "sets the specified shebang for the binstub" do
|
||||||
install_gemfile <<-G
|
install_gemfile <<-G
|
||||||
source "#{file_uri_for(gem_repo1)}"
|
source "#{file_uri_for(gem_repo1)}"
|
||||||
gem "rack"
|
gem "rack"
|
||||||
|
|
|
@ -534,7 +534,7 @@ describe "Module#autoload" do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
it "and fails when finding the undefined autoload constant in the the current scope when declared in current and defined in parent" do
|
it "and fails when finding the undefined autoload constant in the current scope when declared in current and defined in parent" do
|
||||||
@remove << :DeclaredInCurrentDefinedInParent
|
@remove << :DeclaredInCurrentDefinedInParent
|
||||||
module ModuleSpecs::Autoload
|
module ModuleSpecs::Autoload
|
||||||
ScratchPad.record -> {
|
ScratchPad.record -> {
|
||||||
|
|
|
@ -6,7 +6,7 @@ describe "Digest.bubblebabble" do
|
||||||
Digest.bubblebabble('').should be_an_instance_of(String)
|
Digest.bubblebabble('').should be_an_instance_of(String)
|
||||||
end
|
end
|
||||||
|
|
||||||
it "returns a String in the The Bubble Babble Binary Data Encoding format" do
|
it "returns a String in the Bubble Babble Binary Data Encoding format" do
|
||||||
Digest.bubblebabble('').should == 'xexax'
|
Digest.bubblebabble('').should == 'xexax'
|
||||||
Digest.bubblebabble('foo').should == 'xinik-zorox'
|
Digest.bubblebabble('foo').should == 'xinik-zorox'
|
||||||
Digest.bubblebabble('bar').should == 'ximik-cosex'
|
Digest.bubblebabble('bar').should == 'ximik-cosex'
|
||||||
|
|
Loading…
Reference in a new issue