diff options
author | Uģis Ozols <ugis.ozolss@gmail.com> | 2012-04-25 08:04:23 +0300 |
---|---|---|
committer | Uģis Ozols <ugis.ozolss@gmail.com> | 2012-04-25 08:04:23 +0300 |
commit | 15338530f8e82e335d940f2938f1b22ef986c5da (patch) | |
tree | 08b7ad709c433747b247bba173f3804e33c5f1c5 /guides | |
parent | 189a1728b561c19404f814979fd73adc5bea554d (diff) | |
download | rails-15338530f8e82e335d940f2938f1b22ef986c5da.tar.gz rails-15338530f8e82e335d940f2938f1b22ef986c5da.tar.bz2 rails-15338530f8e82e335d940f2938f1b22ef986c5da.zip |
for get -> forget
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/generators.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/generators.textile b/guides/source/generators.textile index 836f3d8549..ec5f53870e 100644 --- a/guides/source/generators.textile +++ b/guides/source/generators.textile @@ -456,7 +456,7 @@ h4. +inject_into_file+ Injects a block of code into a defined position in your file. <ruby> -inject_into_file 'name_of_file.rb', :after => "#The code goes below this line. Don't for get the Line break at the end\n" do <<-'RUBY' +inject_into_file 'name_of_file.rb', :after => "#The code goes below this line. Don't forget the Line break at the end\n" do <<-'RUBY' puts "Hello World" RUBY end |