diff options
author | Evan Farrar <evanfarrar@gmail.com> | 2009-05-09 13:37:08 -0500 |
---|---|---|
committer | Evan Farrar <evanfarrar@gmail.com> | 2009-05-09 14:05:06 -0500 |
commit | da965645c218a0ea6f140b0247a00bafee15f77e (patch) | |
tree | cd517b42c413b9d82ea4086105afe2a326b1e814 | |
parent | f3853c7769aed018c1b8d55d57cb129a9739d9b2 (diff) | |
download | rails-da965645c218a0ea6f140b0247a00bafee15f77e.tar.gz rails-da965645c218a0ea6f140b0247a00bafee15f77e.tar.bz2 rails-da965645c218a0ea6f140b0247a00bafee15f77e.zip |
Adds a missing comma in example code.
-rw-r--r-- | railties/guides/source/rails_application_templates.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/rails_application_templates.textile b/railties/guides/source/rails_application_templates.textile index 3068d0fd7f..fc178fa44b 100644 --- a/railties/guides/source/rails_application_templates.textile +++ b/railties/guides/source/rails_application_templates.textile @@ -88,7 +88,7 @@ Please note that you need to +git :init+ before you can install a plugin as a su Or use plain old SVN : <ruby> -plugin 'wtfsvn' :svn => 'svn://crap.com/wtf/trunk' +plugin 'wtfsvn', :svn => 'svn://crap.com/wtf/trunk' </ruby> h4. vendor/lib/file/initializer(filename, data = nil, &block) |