aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2015-03-21 14:31:48 +0100
committerKasper Timm Hansen <kaspth@gmail.com>2015-03-21 14:31:48 +0100
commit07480fb7eb243957de83d22d261941bd20179e09 (patch)
tree43c00b350b1b0525edc371366c55730b330f9b40 /railties/lib/rails
parent92a3c8dcdf174dab5e8759031b6bbe6cd891fe3c (diff)
parent64eb76ed1688f43955209eedb6373ba86f962659 (diff)
downloadrails-07480fb7eb243957de83d22d261941bd20179e09.tar.gz
rails-07480fb7eb243957de83d22d261941bd20179e09.tar.bz2
rails-07480fb7eb243957de83d22d261941bd20179e09.zip
Merge pull request #19444 from prathamesh-sonpatki/fix-typos
[ci skip] Fix typos in test runner's help output
Diffstat (limited to 'railties/lib/rails')
-rw-r--r--railties/lib/rails/test_unit/runner.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/test_unit/runner.rb b/railties/lib/rails/test_unit/runner.rb
index 6700d90a33..c38382535e 100644
--- a/railties/lib/rails/test_unit/runner.rb
+++ b/railties/lib/rails/test_unit/runner.rb
@@ -14,7 +14,7 @@ module Rails
opts.separator ""
opts.on("-e", "--environment [ENV]",
- "run tests in the ENV environment") do |env|
+ "Run tests in the ENV environment") do |env|
options[:environment] = env.strip
end
opts.separator ""
@@ -40,7 +40,7 @@ module Rails
opts.separator "Output options:"
opts.on("-b", "--backtrace",
- "show the complte backtrace") do
+ "Show the complete backtrace") do
options[:backtrace] = true
end