summary refs log tree commit
diff options
context:
space:
mode:
authorJames Tucker <jftucker@gmail.com>2011-05-22 22:48:17 -0700
committerJames Tucker <jftucker@gmail.com>2011-05-23 00:22:18 -0700
commitac2a30c1bd5f770e107539652401c4941176ac4e (patch)
treefd5992434fab72874ae8c63e81ceeb92f313d814
parent62e0b6a30048d49423606718460b29952851e5f1 (diff)
downloadrack-ac2a30c1bd5f770e107539652401c4941176ac4e.tar.gz
Grammatical corrections (thanks digitalally)
-rw-r--r--lib/rack/lint.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rack/lint.rb b/lib/rack/lint.rb
index 32284c8a..d21ea21a 100644
--- a/lib/rack/lint.rb
+++ b/lib/rack/lint.rb
@@ -30,7 +30,7 @@ module Rack
 
     ## = Rack applications
 
-    ## A Rack application is an Ruby object (not a class) that
+    ## A Rack application is a Ruby object (not a class) that
     ## responds to +call+.
     def call(env=nil)
       dup._call(env)
@@ -302,7 +302,7 @@ module Rack
       end
 
       ## * +read+ behaves like IO#read. Its signature is <tt>read([length, [buffer]])</tt>.
-      ##   If given, +length+ must be an non-negative Integer (>= 0) or +nil+, and +buffer+ must
+      ##   If given, +length+ must be a non-negative Integer (>= 0) or +nil+, and +buffer+ must
       ##   be a String and may not be nil. If +length+ is given and not nil, then this method
       ##   reads at most +length+ bytes from the input stream. If +length+ is not given or nil,
       ##   then this method reads all data until EOF.