Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8346

Show
Ignore:
Timestamp:
12/10/07 00:52:38 (10 months ago)
Author:
bitsweat
Message:

Fix doc typo on Dispatcher.dispatch. Closes #10434 [fxn]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/lib/action_controller/dispatcher.rb

    r7944 r8346  
    55    class << self 
    66      # Backward-compatible class method takes CGI-specific args. Deprecated 
    7       # in favor of Dispatcher.new(output, request, response).dispatch! 
     7      # in favor of Dispatcher.new(output, request, response).dispatch. 
    88      def dispatch(cgi = nil, session_options = CgiRequest::DEFAULT_SESSION_OPTIONS, output = $stdout) 
    99        new(output).dispatch_cgi(cgi, session_options)