summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Wanninger <ajwann@ajwann.codes>2018-01-14 09:50:31 -0500
committerAdam Wanninger <ajwann@ajwann.codes>2018-01-25 10:01:13 -0500
commitb1fd32c2f34512525253a5da2882e3e4612967b1 (patch)
tree2ca0b59246ad9e9b22b07a79b234f26bace49d82
parent6ee9f72766d440788701270f3e87bb1514c137d5 (diff)
downloadbundler-b1fd32c2f34512525253a5da2882e3e4612967b1.tar.gz
corrected spelling of stil to still
-rw-r--r--lib/bundler/cli/doctor.rb2
-rw-r--r--spec/commands/doctor_spec.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/cli/doctor.rb b/lib/bundler/cli/doctor.rb
index 64981c5b9b..6fd9f177bb 100644
--- a/lib/bundler/cli/doctor.rb
+++ b/lib/bundler/cli/doctor.rb
@@ -110,7 +110,7 @@ module Bundler
ok = true
if files_not_owned_by_current_user_but_still_rw.any?
Bundler.ui.warn "Files exist in the Bundler home that are owned by another " \
- "user, but are stil readable/writable. These files are:\n - #{files_not_owned_by_current_user_but_still_rw.join("\n - ")}"
+ "user, but are still readable/writable. These files are:\n - #{files_not_owned_by_current_user_but_still_rw.join("\n - ")}"
ok = false
end
diff --git a/spec/commands/doctor_spec.rb b/spec/commands/doctor_spec.rb
index c66528a47b..cd0e020b68 100644
--- a/spec/commands/doctor_spec.rb
+++ b/spec/commands/doctor_spec.rb
@@ -84,7 +84,7 @@ RSpec.describe "bundle doctor" do
allow(File).to receive(:readable?).with(unwritable_file) { true }
expect { Bundler::CLI::Doctor.new({}).run }.not_to raise_error
expect(@stdout.string).to include(
- "Files exist in the Bundler home that are owned by another user, but are stil readable/writable. These files are:\n - #{unwritable_file}"
+ "Files exist in the Bundler home that are owned by another user, but are still readable/writable. These files are:\n - #{unwritable_file}"
)
expect(@stdout.string).not_to include("No issues")
end