We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9379cd3 commit 2d5b475Copy full SHA for 2d5b475
functions/helloworld/main.py
@@ -141,7 +141,7 @@ def hello_content(request):
141
# [END functions_http_content]
142
143
144
-# [START functions_http_methods]
+# [START functions_http_method]
145
def hello_method(request):
146
""" Responds to a GET request with "Hello world!". Forbids a PUT request.
147
Args:
@@ -160,7 +160,7 @@ def hello_method(request):
160
return abort(403)
161
else:
162
return abort(405)
163
-# [END functions_http_methods]
+# [END functions_http_method]
164
165
166
def hello_error_1(request):
0 commit comments