@@ -84,8 +84,8 @@ def find_arrow_all(collection, query, *, schema=None, **kwargs):
8484 against which to run the ``find`` operation.
8585 - `query`: A mapping containing the query to use for the find operation.
8686 - `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
87- If the schema is not given, it will be inferred using the first
88- document in the result set.
87+ If the schema is not given, it will be inferred using the data in the
88+ result set.
8989
9090 Additional keyword-arguments passed to this method will be passed
9191 directly to the underlying ``find`` operation.
@@ -122,8 +122,8 @@ def aggregate_arrow_all(collection, pipeline, *, schema=None, **kwargs):
122122 against which to run the ``aggregate`` operation.
123123 - `pipeline`: A list of aggregation pipeline stages.
124124 - `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
125- If the schema is not given, it will be inferred using the first
126- document in the result set.
125+ If the schema is not given, it will be inferred using the data in the
126+ result set.
127127
128128 Additional keyword-arguments passed to this method will be passed
129129 directly to the underlying ``aggregate`` operation.
@@ -177,8 +177,8 @@ def find_pandas_all(collection, query, *, schema=None, **kwargs):
177177 against which to run the ``find`` operation.
178178 - `query`: A mapping containing the query to use for the find operation.
179179 - `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
180- If the schema is not given, it will be inferred using the first
181- document in the result set.
180+ If the schema is not given, it will be inferred using the data in the
181+ result set.
182182
183183 Additional keyword-arguments passed to this method will be passed
184184 directly to the underlying ``find`` operation.
@@ -198,8 +198,8 @@ def aggregate_pandas_all(collection, pipeline, *, schema=None, **kwargs):
198198 against which to run the ``find`` operation.
199199 - `pipeline`: A list of aggregation pipeline stages.
200200 - `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
201- If the schema is not given, it will be inferred using the first
202- document in the result set.
201+ If the schema is not given, it will be inferred using the data in the
202+ result set.
203203
204204 Additional keyword-arguments passed to this method will be passed
205205 directly to the underlying ``aggregate`` operation.
@@ -240,8 +240,8 @@ def find_numpy_all(collection, query, *, schema=None, **kwargs):
240240 against which to run the ``find`` operation.
241241 - `query`: A mapping containing the query to use for the find operation.
242242 - `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
243- If the schema is not given, it will be inferred using the first
244- document in the result set.
243+ If the schema is not given, it will be inferred using the data in the
244+ result set.
245245
246246 Additional keyword-arguments passed to this method will be passed
247247 directly to the underlying ``find`` operation.
@@ -271,8 +271,8 @@ def aggregate_numpy_all(collection, pipeline, *, schema=None, **kwargs):
271271 against which to run the ``find`` operation.
272272 - `query`: A mapping containing the query to use for the find operation.
273273 - `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
274- If the schema is not given, it will be inferred using the first
275- document in the result set.
274+ If the schema is not given, it will be inferred using the data in the
275+ result set.
276276
277277 Additional keyword-arguments passed to this method will be passed
278278 directly to the underlying ``aggregate`` operation.
@@ -338,8 +338,8 @@ def find_polars_all(collection, query, *, schema=None, **kwargs):
338338 against which to run the ``find`` operation.
339339 - `query`: A mapping containing the query to use for the find operation.
340340 - `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
341- If the schema is not given, it will be inferred using the first
342- document in the result set.
341+ If the schema is not given, it will be inferred using the data in the
342+ result set.
343343
344344 Additional keyword-arguments passed to this method will be passed
345345 directly to the underlying ``find`` operation.
@@ -361,8 +361,8 @@ def aggregate_polars_all(collection, pipeline, *, schema=None, **kwargs):
361361 against which to run the ``find`` operation.
362362 - `pipeline`: A list of aggregation pipeline stages.
363363 - `schema` (optional): Instance of :class:`~pymongoarrow.schema.Schema`.
364- If the schema is not given, it will be inferred using the first
365- document in the result set.
364+ If the schema is not given, it will be inferred using the data in the
365+ result set.
366366
367367 Additional keyword-arguments passed to this method will be passed
368368 directly to the underlying ``aggregate`` operation.
0 commit comments