Skip to content

Commit 226b707

Browse files
authored
Merge pull request #4436 from szarnyasg/nits-20241224a
Nits 20241224a
2 parents 6c408e7 + 164eeea commit 226b707

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/extensions/working_with_extensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Any subsequent calls to `INSTALL ⟨extension_name⟩` will use the local versio
163163
FORCE INSTALL extension_name;
164164
```
165165

166-
Force installing can also be used to overwrite an extension with an extension with the same name from another repository,
166+
Force installing can also be used to overwrite an extension with an extension of the same name from another repository,
167167

168168
For example, first, `spatial` is installed from the core repository:
169169

docs/guides/python/import_arrow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: docu
33
title: Import from Apache Arrow
44
---
55

6-
`CREATE TABLE AS` and `INSERT INTO` can be used to create a table from any query. We can then create tables or insert into existing tables by referring to referring to the Apache Arrow object in the query. This example imports from an [Arrow Table](https://arrow.apache.org/docs/python/generated/pyarrow.Table.html), but DuckDB can query different Apache Arrow formats as seen in the [SQL on Arrow guide]({% link docs/guides/python/sql_on_arrow.md %}).
6+
`CREATE TABLE AS` and `INSERT INTO` can be used to create a table from any query. We can then create tables or insert into existing tables by referring to the Apache Arrow object in the query. This example imports from an [Arrow Table](https://arrow.apache.org/docs/python/generated/pyarrow.Table.html), but DuckDB can query different Apache Arrow formats as seen in the [SQL on Arrow guide]({% link docs/guides/python/sql_on_arrow.md %}).
77

88
```python
99
import duckdb

docs/guides/python/import_pandas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Import from Pandas
44
---
55

66
[`CREATE TABLE ... AS`]({% link docs/sql/statements/create_table.md %}#create-table--as-select-ctas) and [`INSERT INTO`]({% link docs/sql/statements/insert.md %}) can be used to create a table from any query.
7-
We can then create tables or insert into existing tables by referring to referring to the [Pandas](https://pandas.pydata.org/) DataFrame in the query.
7+
We can then create tables or insert into existing tables by referring to the [Pandas](https://pandas.pydata.org/) DataFrame in the query.
88
There is no need to register the DataFrames manually –
99
DuckDB can find them in the Python process by name thanks to [replacement scans]({% link docs/guides/glossary.md %}#replacement-scan).
1010

0 commit comments

Comments
 (0)