Skip to content

Commit

Permalink
docs: hyphenate "properly formatted" and add colon
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman authored and gforsyth committed Dec 19, 2023
1 parent 83eab61 commit 5ab1c27
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/backends/bigquery.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ render_do_connect("bigquery")
### `ibis.connect` URL format

In addition to `ibis.bigquery.connect`, you can also connect to BigQuery by
passing a properly formatted BigQuery connection URL to `ibis.connect`
passing a properly-formatted BigQuery connection URL to `ibis.connect`:

```python
con = ibis.connect(f"bigquery://{project_id}/{dataset_id}")
Expand Down
2 changes: 1 addition & 1 deletion docs/backends/clickhouse.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ render_do_connect("clickhouse")
### `ibis.connect` URL format

In addition to `ibis.clickhouse.connect`, you can also connect to ClickHouse by
passing a properly formatted ClickHouse connection URL to `ibis.connect`
passing a properly-formatted ClickHouse connection URL to `ibis.connect`:

```python
con = ibis.connect(f"clickhouse://{user}:{password}@{host}:{port}?secure={secure}")
Expand Down
2 changes: 1 addition & 1 deletion docs/backends/druid.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ render_do_connect("druid")
### `ibis.connect` URL format

In addition to `ibis.druid.connect`, you can also connect to Druid by
passing a properly formatted Druid connection URL to `ibis.connect`
passing a properly-formatted Druid connection URL to `ibis.connect`:

```python
con = ibis.connect("druid://localhost:8082/druid/v2/sql")
Expand Down
2 changes: 1 addition & 1 deletion docs/backends/duckdb.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ render_do_connect("duckdb")
### `ibis.connect` URL format

In addition to `ibis.duckdb.connect`, you can also connect to DuckDB by
passing a properly formatted DuckDB connection URL to `ibis.connect`
passing a properly-formatted DuckDB connection URL to `ibis.connect`:

```{python}
import ibis
Expand Down
2 changes: 1 addition & 1 deletion docs/backends/mssql.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ render_do_connect("mssql")
### `ibis.connect` URL format

In addition to `ibis.mssql.connect`, you can also connect to MSSQL by
passing a properly formatted MSSQL connection URL to `ibis.connect`
passing a properly-formatted MSSQL connection URL to `ibis.connect`:

```python
con = ibis.connect(f"mssql://{user}:{password}@{host}:{port}")
Expand Down
2 changes: 1 addition & 1 deletion docs/backends/mysql.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ render_do_connect("mysql")
### `ibis.connect` URL format

In addition to `ibis.mysql.connect`, you can also connect to MySQL by
passing a properly formatted MySQL connection URL to `ibis.connect`
passing a properly-formatted MySQL connection URL to `ibis.connect`:

```python
con = ibis.connect(f"mysql://{user}:{password}@{host}:{port}/{database}")
Expand Down
2 changes: 1 addition & 1 deletion docs/backends/oracle.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ render_do_connect("oracle")
### `ibis.connect` URL format

In addition to `ibis.oracle.connect`, you can also connect to Oracle by
passing a properly formatted Oracle connection URL to `ibis.connect`
passing a properly-formatted Oracle connection URL to `ibis.connect`:

```python
con = ibis.connect(f"oracle://{user}:{password}@{host}:{port}/{database}")
Expand Down
2 changes: 1 addition & 1 deletion docs/backends/postgresql.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ render_do_connect("postgres")
### `ibis.connect` URL format

In addition to `ibis.postgres.connect`, you can also connect to Postgres by
passing a properly formatted Postgres connection URL to `ibis.connect`
passing a properly-formatted Postgres connection URL to `ibis.connect`:

```python
con = ibis.connect(f"postgres://{user}:{password}@{host}:{port}/{database}")
Expand Down
2 changes: 1 addition & 1 deletion docs/backends/snowflake.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ render_do_connect("snowflake")
### `ibis.connect` URL format

In addition to `ibis.snowflake.connect`, you can also connect to Snowflake by
passing a properly formatted Snowflake connection URL to `ibis.connect`
passing a properly-formatted Snowflake connection URL to `ibis.connect`:

```python
con = ibis.connect(f"snowflake://{user}:{password}@{account}/{database}")
Expand Down
2 changes: 1 addition & 1 deletion docs/backends/sqlite.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ render_do_connect("sqlite")
### `ibis.connect` URL format

In addition to `ibis.sqlite.connect`, you can also connect to SQLite by
passing a properly formatted SQLite connection URL to `ibis.connect`:
passing a properly-formatted SQLite connection URL to `ibis.connect`:

```python
con = ibis.connect("sqlite:///path/to/local/file")
Expand Down

0 comments on commit 5ab1c27

Please sign in to comment.