summary refs log tree commit
diff options
context:
space:
mode:
authorAlexander Shemetovsky <alexkval@gmail.com>2017-08-10 22:13:43 +0300
committerGitHub <noreply@github.com>2017-08-10 22:13:43 +0300
commit5856b5859a84ed17bca9a8c8dd7ead2e6a56b91d (patch)
treecdf174515191addb6678a9155f3d2c7d31763e5e
parent593b6f984310baf13dc34ef825cfe1fe1428fd47 (diff)
downloadrack-5856b5859a84ed17bca9a8c8dd7ead2e6a56b91d.tar.gz
Fix typos
-rw-r--r--lib/rack/request.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rack/request.rb b/lib/rack/request.rb
index 29ede9fb..28712ef6 100644
--- a/lib/rack/request.rb
+++ b/lib/rack/request.rb
@@ -98,7 +98,7 @@ module Rack
 
     module Helpers
       # The set of form-data media-types. Requests that do not indicate
-      # one of the media types presented in this list will not be eligible
+      # one of the media types present in this list will not be eligible
       # for form-data / param parsing.
       FORM_DATA_MEDIA_TYPES = [
         'application/x-www-form-urlencoded',
@@ -106,7 +106,7 @@ module Rack
       ]
 
       # The set of media-types. Requests that do not indicate
-      # one of the media types presented in this list will not be eligible
+      # one of the media types present in this list will not be eligible
       # for param parsing like soap attachments or generic multiparts
       PARSEABLE_DATA_MEDIA_TYPES = [
         'multipart/related',