style: rename Url to URL

This commit is contained in:
Roman Hargrave 2022-09-09 23:01:48 -07:00
parent ce2a4a7c1f
commit 4007c806c3
No known key found for this signature in database
GPG Key ID: E7679B92360E753A
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@
) ->
SignedUrl :: binary().
% sign a URL given headers, a verb, authentication details, and a time
signed_url(Auth, Verb, Service, Url, ExtraHeaders, Time, TTL) ->
#{host := Host} = UnauthenticatedUriMap = uri_string:parse(Url),
signed_url(Auth, Verb, Service, URL, ExtraHeaders, Time, TTL) ->
#{host := Host} = UnauthenticatedUriMap = uri_string:parse(URL),
Headers = [{<<"host">>, Host} | ExtraHeaders],
% insert authentication params.
QueryList = sorted_query_list(uri_query_list(UnauthenticatedUriMap)