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.
1 parent aeb2e07 commit ed91b33Copy full SHA for ed91b33
lib/elixir/lib/uri.ex
@@ -20,11 +20,12 @@ defmodule URI do
20
host: nil,
21
port: nil
22
23
+ # TODO: Remove nil from path when we fully deprecate URI.parse on Elixir v1.17
24
@type t :: %__MODULE__{
25
authority: authority,
26
fragment: nil | binary,
27
host: nil | binary,
- path: binary,
28
+ path: nil | binary,
29
port: nil | :inet.port_number(),
30
query: nil | binary,
31
scheme: nil | binary,
0 commit comments