Changeset 1249

Show
Ignore:
Timestamp:
01/09/08 19:06:19 (9 months ago)
Author:
wayneesegu..@gmail.com
Message:

Fixed two space before method call typos. Fixes #427. Thanks daniel siemssen!

Files:

Legend:

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

    r1228 r1249  
    3030          raise ControllerExceptions::BadRequest, "Route matched, but route did not specify a controller"  
    3131        end 
    32         Merb.logger. debug("Routed to: #{request.route_params.inspect}") 
     32        Merb.logger.debug("Routed to: #{request.route_params.inspect}") 
    3333        # set controller class and the action to call 
    3434        klass = request.controller_class 
  • trunk/lib/merb/mixins/render.rb

    r1228 r1249  
    1313                                     
    1414        self._layout = :application 
    15         self._template_root = File.expand_path(Merb. view_path) 
     15        self._template_root = File.expand_path(Merb.view_path) 
    1616        self._templates = {} 
    1717        self._cached_partials = {}