Skip to content

Commit e583c42

Browse files
authored
Fix a docstring formatting typo
Missing trailing `:` for the `url` parameter causes the docstring to render improperly by including `:param str url HTTP URL.` in https://docs.microsoft.com/en-us/python/api/azure-functions/azure.functions.httprequest?view=azure-python and not listing `url` as a parameter.
1 parent ea51851 commit e583c42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azure/functions/_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ class HttpRequest(_abc.HttpRequest):
132132
:param str method:
133133
HTTP request method name.
134134
135-
:param str url
135+
:param str url:
136136
HTTP URL.
137137
138138
:param dict headers:

0 commit comments

Comments
 (0)