We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e00451 commit bc41c15Copy full SHA for bc41c15
1 file changed
lib/live_debugger/utils/url.ex
@@ -11,7 +11,7 @@ defmodule LiveDebugger.Utils.URL do
11
iex> URL.to_relative("http://example.com/foo?bar=baz")
12
"/foo?bar=baz"
13
"""
14
- @spec to_relative(utl :: String.t()) :: String.t()
+ @spec to_relative(url :: String.t()) :: String.t()
15
def to_relative(url) when is_binary(url) do
16
%{path: path, query: query} = URI.parse(url)
17
0 commit comments