Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit 665c7c8

Browse files
committed
capitalize comments
1 parent 0354666 commit 665c7c8

File tree

2 files changed

+2
-2
lines changed
  • gapic
    • ads-templates/%namespace/%name/%version/%sub/services/%service
    • templates/%namespace/%name_%version/%sub/services/%service

2 files changed

+2
-2
lines changed

gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/client.py.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class {{ service.client_name }}(metaclass={{ service.client_name }}Meta):
119119

120120
m = mtls_endpoint_re.match(api_endpoint)
121121
if m is None:
122-
# could not parse api_endpoint; return as-is
122+
# Could not parse api_endpoint; return as-is.
123123
return api_endpoint
124124
name, mtls, sandbox, googledomain = m.groups()
125125
if mtls or not googledomain:

gapic/templates/%namespace/%name_%version/%sub/services/%service/client.py.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ class {{ service.client_name }}(metaclass={{ service.client_name }}Meta):
162162

163163
m = mtls_endpoint_re.match(api_endpoint)
164164
if m is None:
165-
# could not parse api_endpoint; return as-is
165+
# Could not parse api_endpoint; return as-is.
166166
return api_endpoint
167167

168168
name, mtls, sandbox, googledomain = m.groups()

0 commit comments

Comments
 (0)