Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions samples/hello/async_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ async def main(project_id, instance_id, table_id):
# sequential keys can result in poor distribution of operations
# across nodes.
#
# We recommended that you use bytestrings directly for row keys

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

There's a small typo here. It should be 'recommend' instead of 'recommended'.

Suggested change
# We recommended that you use bytestrings directly for row keys
# We recommend that you use bytestrings directly for row keys

# where possible, rather than encoding strings.
#
# For more information about how to design a Bigtable schema for
# the best performance, see the documentation:
#
Expand Down
3 changes: 3 additions & 0 deletions samples/hello/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ def main(project_id, instance_id, table_id):
# sequential keys can result in poor distribution of operations
# across nodes.
#
# We recommended that you use bytestrings directly for row keys

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

There's a small typo here. It should be 'recommend' instead of 'recommended'.

Suggested change
# We recommended that you use bytestrings directly for row keys
# We recommend that you use bytestrings directly for row keys

# where possible, rather than encoding strings.
#
# For more information about how to design a Bigtable schema for
# the best performance, see the documentation:
#
Expand Down
Loading