Skip to content

Commit 674db09

Browse files
committed
reword
1 parent 25a3c03 commit 674db09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/docs/source/tutorial/sql/python_data_source.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,15 +358,15 @@ For library that are used inside a method, it must be imported inside the method
358358
359359
Mutating State
360360
~~~~~~~~~~~~~~
361-
The following methods should not mutate internal state. Changes to the object state made in these methods are not guaranteed to be visible or invisible to future operations.
361+
The following methods should not mutate internal state. Changes to the object state made in these methods are not guaranteed to be visible or invisible to future calls.
362362

363363
- DataSourceReader.partitions()
364364
- DataSourceReader.read()
365365
- DataSourceStreamReader.read()
366366
- SimpleDataSourceStreamReader.readBetweenOffsets()
367367
- All writer methods
368368

369-
All other methods such as DataSource.schema() and DataSourceStreamReader.latestOffset() can be stateful. Changes to the object state made in these methods are visible to future invocations.
369+
All other methods such as DataSource.schema() and DataSourceStreamReader.latestOffset() can be stateful. Changes to the object state made in these methods are visible to future calls.
370370

371371
Using a Python Data Source
372372
--------------------------

0 commit comments

Comments
 (0)