lib/rack/utils.rb in rack-1.3.1 vs lib/rack/utils.rb in rack-1.3.2
- old
+ new
@@ -16,10 +16,10 @@
module Rack
# Rack::Utils contains a grab-bag of useful methods for writing web
# applications adopted from all kinds of Ruby libraries.
module Utils
- # URI escapes a string. (CGI style space to +)
+ # URI escapes. (CGI style space to +)
def escape(s)
URI.encode_www_form_component(s)
end
module_function :escape