Skip to content

Commit bc41c15

Browse files
authored
Fix typo in URL.to_relative/1 spec (#445)
1 parent 2e00451 commit bc41c15

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/live_debugger/utils/url.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ defmodule LiveDebugger.Utils.URL do
1111
iex> URL.to_relative("http://example.com/foo?bar=baz")
1212
"/foo?bar=baz"
1313
"""
14-
@spec to_relative(utl :: String.t()) :: String.t()
14+
@spec to_relative(url :: String.t()) :: String.t()
1515
def to_relative(url) when is_binary(url) do
1616
%{path: path, query: query} = URI.parse(url)
1717

0 commit comments

Comments
 (0)