Skip to content

Commit 7a97730

Browse files
committed
URI.decode_query returns a map, not a HashDict
1 parent dad0f3f commit 7a97730

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)