1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix typos

This commit is contained in:
Kazuhiro NISHIYAMA 2019-08-17 13:57:12 +09:00
parent 2468466a1a
commit ccbfb054b1
No known key found for this signature in database
GPG key ID: 262ED8DBB4222F7A
2 changed files with 2 additions and 2 deletions

View file

@ -788,7 +788,7 @@ module Bundler
Bundler::SharedHelpers.major_deprecation 2,\ Bundler::SharedHelpers.major_deprecation 2,\
"The `#{flag_name}` flag is deprecated because it relies on being " \ "The `#{flag_name}` flag is deprecated because it relies on being " \
"remembered accross bundler invokations, which bundler will no longer " \ "remembered across bundler invokations, which bundler will no longer " \
"do in future versions. Instead please use `bundle config #{name} " \ "do in future versions. Instead please use `bundle config #{name} " \
"'#{value}'`, and stop using this flag" "'#{value}'`, and stop using this flag"
end end

View file

@ -288,7 +288,7 @@ RSpec.describe "major deprecations" do
it "should print a deprecation warning", :bundler => "2" do it "should print a deprecation warning", :bundler => "2" do
expect(deprecations).to include( expect(deprecations).to include(
"The `#{flag_name}` flag is deprecated because it relies on " \ "The `#{flag_name}` flag is deprecated because it relies on " \
"being remembered accross bundler invokations, which bundler " \ "being remembered across bundler invokations, which bundler " \
"will no longer do in future versions. Instead please use " \ "will no longer do in future versions. Instead please use " \
"`bundle config #{name} '#{value}'`, and stop using this flag" "`bundle config #{name} '#{value}'`, and stop using this flag"
) )