Skip to content

Commit 83e9c6b

Browse files
cpcloudgforsyth
andcommitted
Apply suggestions from code review
Co-authored-by: Gil Forsyth <[email protected]>
1 parent c0f7ea6 commit 83e9c6b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

ibis/backends/__init__.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ def create_catalog(self, name: str, /, *, force: bool = False) -> None:
664664
backend (where available), regardless of the terminology the backend uses.
665665
666666
See the
667-
[Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy.qmd)
667+
[Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy.qmd)
668668
for more info.
669669
:::
670670
@@ -690,7 +690,7 @@ def drop_catalog(self, name: str, /, *, force: bool = False) -> None:
690690
backend (where available), regardless of the terminology the backend uses.
691691
692692
See the
693-
[Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy.qmd)
693+
[Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy.qmd)
694694
for more info.
695695
:::
696696
@@ -720,7 +720,7 @@ def list_databases(
720720
backend (where available), regardless of the terminology the backend uses.
721721
722722
See the
723-
[Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy.qmd)
723+
[Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy.qmd)
724724
for more info.
725725
:::
726726
@@ -758,7 +758,7 @@ def create_database(
758758
backend (where available), regardless of the terminology the backend uses.
759759
760760
See the
761-
[Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy.qmd)
761+
[Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy.qmd)
762762
for more info.
763763
:::
764764
@@ -790,7 +790,7 @@ def drop_database(
790790
backend (where available), regardless of the terminology the backend uses.
791791
792792
See the
793-
[Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy.qmd)
793+
[Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy.qmd)
794794
for more info.
795795
:::
796796
@@ -1041,7 +1041,7 @@ def list_tables(
10411041
(and catalog, if applicable for this backend) is used.
10421042
10431043
See the
1044-
[Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy.qmd)
1044+
[Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy.qmd)
10451045
for more info.
10461046
10471047
Returns
@@ -1090,7 +1090,7 @@ def table(
10901090
(and catalog, if applicable for this backend) is used.
10911091
10921092
See the
1093-
[Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy.qmd)
1093+
[Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy.qmd)
10941094
for more info.
10951095
10961096
Returns
@@ -1109,13 +1109,13 @@ def table(
11091109
>>> backend.table("foo") # doctest: +SKIP
11101110
11111111
Get the "foo" table from the "bar" database
1112-
(in duckdb's language they would say the "bar" schema,
1112+
(in DuckDB's language they would say the "bar" schema,
11131113
in SQL this would be `"bar"."foo"`)
11141114
11151115
>>> backend.table("foo", database="bar") # doctest: +SKIP
11161116
11171117
Get the "foo" table from the "bar" database, within the "baz" catalog
1118-
(in duckdb's language they would say the "bar" schema, and "baz" database,
1118+
(in DuckDB's language they would say the "bar" schema, and "baz" database,
11191119
in SQL this would be `"baz"."bar"."foo"`)
11201120
11211121
>>> backend.table("foo", database=("baz", "bar")) # doctest: +SKIP

0 commit comments

Comments
 (0)