Skip to content

Commit

Permalink
Readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
Codcore committed Jun 7, 2015
1 parent 2ac550e commit 8fe0e92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class IndexController < Base::Controller
def hello
html "<p>Hello, you're asked a #{request.method} #{request.path}</p> \n
<a href='/bye'>Visit <b>bye</b> action</a>
<img src="/images/amethyst.jpg">
<img src='/images/amethyst.jpg'>"
end
def bye
Expand Down Expand Up @@ -79,7 +79,7 @@ class TimeLogger < Middleware::Base
def call(request)
logger = Base::App.logger
t_req = Time.now
response = @app.call(request)
response = @app.call(request) # sends request to next middleware
t_res = Time.now
elapsed = (t_res - t_req).to_f*1000
string = "%.4f ms" % elapsed
Expand Down

0 comments on commit 8fe0e92

Please sign in to comment.