Skip to content

Commit 2d5b475

Browse files
author
Ace Nassri
authored
chore(functions/http): make region tag spelling consistent (GoogleCloudPlatform#4888)
1 parent 9379cd3 commit 2d5b475

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

functions/helloworld/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def hello_content(request):
141141
# [END functions_http_content]
142142

143143

144-
# [START functions_http_methods]
144+
# [START functions_http_method]
145145
def hello_method(request):
146146
""" Responds to a GET request with "Hello world!". Forbids a PUT request.
147147
Args:
@@ -160,7 +160,7 @@ def hello_method(request):
160160
return abort(403)
161161
else:
162162
return abort(405)
163-
# [END functions_http_methods]
163+
# [END functions_http_method]
164164

165165

166166
def hello_error_1(request):

0 commit comments

Comments
 (0)