We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f4410f + 238baa1 commit 5b5075bCopy full SHA for 5b5075b
lib/elixir/lib/uri.ex
@@ -76,10 +76,10 @@ defmodule URI do
76
def encode_query(l), do: Enum.map_join(l, "&", &pair/1)
77
78
@doc """
79
- Decodes a query string into an orddict.
+ Decodes a query string into a `HashDict`.
80
81
- Given a query string of the form "key1=value1&key2=value2...", produces an
82
- orddict with one entry for each key-value pair. Each key and value will be a
+ Given a query string of the form "key1=value1&key2=value2...", produces a
+ `HashDict` with one entry for each key-value pair. Each key and value will be a
83
binary. Keys and values will be percent-unescaped.
84
85
Use `query_decoder/1` if you want to iterate over each value manually.
0 commit comments