aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/commands.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-09-11 06:26:38 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-09-11 06:26:38 +0000
commit72ef2bed0105811022add4feef86021f1f820c36 (patch)
treeddf5697464af1f3ce503bdfbb3947709e8f5258c /railties/lib/rails_generator/commands.rb
parent1472bf273d9f61208d3096fc42aa507be6184b45 (diff)
downloadrails-72ef2bed0105811022add4feef86021f1f820c36.tar.gz
rails-72ef2bed0105811022add4feef86021f1f820c36.tar.bz2
rails-72ef2bed0105811022add4feef86021f1f820c36.zip
Fixed missing ds
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2188 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib/rails_generator/commands.rb')
-rw-r--r--railties/lib/rails_generator/commands.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails_generator/commands.rb b/railties/lib/rails_generator/commands.rb
index 9b8ca01ad2..5f37992d77 100644
--- a/railties/lib/rails_generator/commands.rb
+++ b/railties/lib/rails_generator/commands.rb
@@ -307,7 +307,7 @@ end_message
unless options[:pretend]
if options[:svn]
# If the file has been marked to be added
- # but has not yet been checked in, revert and elete
+ # but has not yet been checked in, revert and delete
if options[:svn][relative_destination]
system("svn revert #{destination}")
FileUtils.rm(destination)
@@ -343,7 +343,7 @@ end_message
unless options[:pretend]
if options[:svn]
# If the directory has been marked to be added
- # but has not yet been checked in, revert and elete
+ # but has not yet been checked in, revert and delete
if options[:svn][relative_path]
system("svn revert #{path}")
FileUtils.rmdir(path)