diff options
author | Gibheer <gibheer@gmail.com> | 2012-12-12 18:39:40 +0100 |
---|---|---|
committer | Gibheer <gibheer@gmail.com> | 2012-12-12 18:39:40 +0100 |
commit | 38bde320ac7ba70b5d3a0320f70080062a8790c0 (patch) | |
tree | 6ec9df21bcd5d92f7ecbdc6319327b138244a016 /lib | |
parent | 6e705fdf4952c9641897ce68ec88a60289d3a95b (diff) |
typo in the documentation
Diffstat (limited to 'lib')
-rw-r--r-- | lib/zero/request/parameter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zero/request/parameter.rb b/lib/zero/request/parameter.rb index 73e69e2..b1716bd 100644 --- a/lib/zero/request/parameter.rb +++ b/lib/zero/request/parameter.rb @@ -59,7 +59,7 @@ module Zero # *Beware, that this may lead to security holes!* # # @param key [String] a key to look for - # @returns [String] the value of the key + # @return [String] the value of the key def [](key) @custom[key] || @payload[key] || @query[key] end |