diff options
author | Michael Koziarski <michael@koziarski.com> | 2007-11-05 22:08:44 +0000 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2007-11-05 22:08:44 +0000 |
commit | 800b69b6adab2e2ea90b66fd2b37ed05f973b1d5 (patch) | |
tree | e1045a453f948a6eee019d801f7116ee55950de7 | |
parent | ee1ad762a4eff7bd1c04abe2290311a4b93f5459 (diff) | |
download | rails-800b69b6adab2e2ea90b66fd2b37ed05f973b1d5.tar.gz rails-800b69b6adab2e2ea90b66fd2b37ed05f973b1d5.tar.bz2 rails-800b69b6adab2e2ea90b66fd2b37ed05f973b1d5.zip |
Add missing quote to send_file documentation. [developingchris] Closes #10078
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8075 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | actionpack/lib/action_controller/streaming.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/streaming.rb b/actionpack/lib/action_controller/streaming.rb index 2e934067ac..42fe429836 100644 --- a/actionpack/lib/action_controller/streaming.rb +++ b/actionpack/lib/action_controller/streaming.rb @@ -45,7 +45,7 @@ module ActionController #:nodoc: # send_file '/path/to.jpeg', :type => 'image/jpeg', :disposition => 'inline' # # Show a 404 page in the browser: - # send_file '/path/to/404.html, :type => 'text/html; charset=utf-8', :status => 404 + # send_file '/path/to/404.html', :type => 'text/html; charset=utf-8', :status => 404 # # Read about the other Content-* HTTP headers if you'd like to # provide the user with more information (such as Content-Description). |