-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: fix formatting of request arg in docstring #1628
Conversation
e7916ff
to
e3a3ab5
Compare
e3a3ab5
to
140e6c4
Compare
bd43f00
to
108fafa
Compare
@@ -233,7 +233,7 @@ async def sample_list_buckets(): | |||
|
|||
Args: | |||
request (Optional[Union[google.cloud.logging_v2.types.ListBucketsRequest, dict]]): | |||
The request object. The parameters to `ListBuckets`. | |||
The request object. The parameters to ``ListBuckets``. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The issue to be fixed by this PR seems to be about spacing - are these additional backticks intentional side effects? Will this cause issues with downstream documentation page generation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't expect any issues as we're using the same code a few lines down. There will be changes in downstream documentation pages but I believe in most cases it will be an improvement as previously lists were not being displayed properly. We can roll back this change if we encounter a significant issue downstream.
Fixes #1627 🦕