Skip to content

Commit e7cd251

Browse files
author
José Valim
committed
Merge pull request #2257 from alco/uri-docfix
URI.decode_query returns a map, not a HashDict
2 parents dad0f3f + 7a97730 commit e7cd251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/lib/uri.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ defmodule URI do
8484
Decodes a query string into a dictionary (by default uses a map).
8585
8686
Given a query string of the form "key1=value1&key2=value2...", produces a
87-
`HashDict` with one entry for each key-value pair. Each key and value will be a
87+
map with one entry for each key-value pair. Each key and value will be a
8888
binary. Keys and values will be percent-unescaped.
8989
9090
Use `query_decoder/1` if you want to iterate over each value manually.

0 commit comments

Comments
 (0)