summary refs log tree commit
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2013-05-24 01:47:29 +0530
committerVipul A M <vipulnsward@gmail.com>2013-05-28 23:29:23 +0530
commite7d741c6282ca4cf4e01506f5681e6e6b14c0b32 (patch)
tree19ce9482c4cf8c25b278e2109a4ae2620b5f82ca
parent838865f86ea538015f6c49e2c4935bab56533bdb (diff)
downloadrack-e7d741c6282ca4cf4e01506f5681e6e6b14c0b32.tar.gz
Fix some typos
-rw-r--r--SPEC2
-rw-r--r--lib/rack/lint.rb2
-rw-r--r--lib/rack/session/abstract/id.rb6
3 files changed, 5 insertions, 5 deletions
diff --git a/SPEC b/SPEC
index ae47f5cb..3a6481d2 100644
--- a/SPEC
+++ b/SPEC
@@ -222,7 +222,7 @@ The Body itself should not be an instance of String, as this will
 break in Ruby 1.9.
 If the Body responds to +close+, it will be called after iteration. If
 the body is replaced by a middleware after action, the original body
-must be closed first, if it repsonds to close.
+must be closed first, if it responds to close.
 If the Body responds to +to_path+, it must return a String
 identifying the location of a file whose contents are identical
 to that produced by calling +each+; this may be used by the
diff --git a/lib/rack/lint.rb b/lib/rack/lint.rb
index e6dbdf39..0c6e1a35 100644
--- a/lib/rack/lint.rb
+++ b/lib/rack/lint.rb
@@ -660,7 +660,7 @@ module Rack
       ##
       ## If the Body responds to +close+, it will be called after iteration. If
       ## the body is replaced by a middleware after action, the original body
-      ## must be closed first, if it repsonds to close.
+      ## must be closed first, if it responds to close.
       # XXX howto: assert("Body has not been closed") { @closed }
 
 
diff --git a/lib/rack/session/abstract/id.rb b/lib/rack/session/abstract/id.rb
index 3ebbe111..e9edeb7f 100644
--- a/lib/rack/session/abstract/id.rb
+++ b/lib/rack/session/abstract/id.rb
@@ -342,7 +342,7 @@ module Rack
           if not data = set_session(env, session_id, session_data, options)
             env["rack.errors"].puts("Warning! #{self.class.name} failed to save session. Content dropped.")
           elsif options[:defer] and not options[:renew]
-            env["rack.errors"].puts("Defering cookie for #{session_id}") if $VERBOSE
+            env["rack.errors"].puts("Deferring cookie for #{session_id}") if $VERBOSE
           else
             cookie = Hash.new
             cookie[:value] = data
@@ -369,7 +369,7 @@ module Rack
           SessionHash
         end
 
-        # All thread safety and session retrival proceedures should occur here.
+        # All thread safety and session retrieval procedures should occur here.
         # Should return [session_id, session].
         # If nil is provided as the session id, generation of a new valid id
         # should occur within.
@@ -378,7 +378,7 @@ module Rack
           raise '#get_session not implemented.'
         end
 
-        # All thread safety and session storage proceedures should occur here.
+        # All thread safety and session storage procedures should occur here.
         # Must return the session id if the session was saved successfully, or
         # false if the session could not be saved.