lib/rack/utils.rb in rack-1.6.0.beta2 vs lib/rack/utils.rb in rack-1.6.0

- old
+ new

@@ -66,10 +66,10 @@ # The default number of bytes to allow parameter keys to take up. # This helps prevent a rogue client from flooding a Request. self.key_space_limit = 65536 - # The maximum number of parts a request can contain. Accepting to many part + # The maximum number of parts a request can contain. Accepting too many part # can lead to the server running out of file handles. # Set to `0` for no limit. self.multipart_part_limit = (ENV['RACK_MULTIPART_LIMIT'] || 128).to_i # Stolen from Mongrel, with some small modifications: