Replace link to python docs from 2 to 3 (#1277)

The link to `iterator` docs is connected to python2, not python3.
This commit is contained in:
Jangsea Park 2024-04-17 01:44:30 +09:00 committed by GitHub
parent ace0154833
commit 4c1203e358
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ method yields zero or more responses.
##### Request-streaming RPC
The request-streaming method `RecordRoute` uses an
[iterator](https://docs.python.org/2/library/stdtypes.html#iterator-types) of
[iterator](https://docs.python.org/3/library/stdtypes.html#iterator-types) of
request values and returns a single response value.
```python