Skip to content

Commit

Permalink
Capitalise comment
Browse files Browse the repository at this point in the history
  • Loading branch information
aaliddell committed Jul 31, 2024
1 parent 2c93b82 commit c94d0a4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/python/python_grpc_library.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def python_grpc_library(name, **kwargs):
} # Forward args
)

# for other code to import generated code with prefix_path if it's given
# For other code to import generated code with prefix_path if it's given
output_mode = kwargs.get("output_mode", "PREFIXED")
if output_mode == "PREFIXED":
imports = [name_pb]
Expand Down
2 changes: 1 addition & 1 deletion modules/python/python_proto_library.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def python_proto_library(name, **kwargs):
} # Forward args
)

# for other code to import generated code with prefix_path if it's given
# For other code to import generated code with prefix_path if it's given
output_mode = kwargs.get("output_mode", "PREFIXED")
if output_mode == "PREFIXED":
imports = [name_pb]
Expand Down
4 changes: 2 additions & 2 deletions tools/rulegen/python.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def {{ .Rule.Name }}(name, **kwargs):
{{ .Common.CompileArgsForwardingSnippet }}
)
# for other code to import generated code with prefix_path if it's given
# For other code to import generated code with prefix_path if it's given
output_mode = kwargs.get("output_mode", "PREFIXED")
if output_mode == "PREFIXED":
imports = [name_pb]
Expand Down Expand Up @@ -65,7 +65,7 @@ def {{ .Rule.Name }}(name, **kwargs):
{{ .Common.CompileArgsForwardingSnippet }}
)
# for other code to import generated code with prefix_path if it's given
# For other code to import generated code with prefix_path if it's given
output_mode = kwargs.get("output_mode", "PREFIXED")
if output_mode == "PREFIXED":
imports = [name_pb]
Expand Down

0 comments on commit c94d0a4

Please sign in to comment.