Skip to content

Commit ac15754

Browse files
authored
Fix typos (#164)
1 parent fae4979 commit ac15754

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

docs/namespaces.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ directory:
3535
```
3636

3737
As a user of LanceDB, you might never notice namespaces at first, because LanceDB exposes the single-level
38-
hierarchy shown above, with hte data being stored in the `data/` directory`, wher the root namespace
39-
is implicit. In alternative setups, you could have multiple namespaces that we won't covere here,
40-
but you can more about them in the [namespace documentation](https://lance.org/format/namespace/) for the Lance format.
38+
hierarchy shown above, with the data stored in the `data/` directory, where the root namespace
39+
is implicit. In alternative setups, you could have multiple namespaces that we won't cover here,
40+
but you can learn more about them in the [namespace documentation](https://lance.org/format/namespace/) for the Lance format.
4141

4242
## Best-practice guidance
4343

44-
- Use the default, single-level root namespace in LanceDB for locally stored, single applications or early-stage projects.
44+
- Use the default, single-level root namespace in LanceDB for locally stored, single-application, or early-stage projects.
4545
- For remote storage locations, introduce explicit namespaces when multiple teams, environments, or domains share the same catalog.
4646
- Treat namespace paths as stable identifiers (for example `"prod/search"`, `"staging/recs"`).
4747
- Avoid hard-coding object-store table paths in application code -- instead, prefer catalog identifiers + namespaces.

docs/tables/namespaces.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import {
1313
RsNamespaceTableOps,
1414
} from '/snippets/connection.mdx';
1515

16-
As described in the [Namespaces and Catalog Model](/namespaces) section, "namespaces" are LanceDB's means to generalize catalog specs, providing developers a clean way to manage hierarchical organization of tables in the catalog. The SDKs treat `namespace` as a path and can use it for table resolution when you use LanceDB outside the root namespace.
16+
As described in the [Namespaces and Catalog Model](/namespaces) section, namespaces are LanceDB's way of generalizing catalog specs, providing developers a clean way to manage hierarchical organization of tables in the catalog. The SDKs treat `namespace` as a path and can use it for table resolution when you use LanceDB outside the root namespace.
1717

18-
As your table organization needs grow with time and your projects become more complex, you can use namespaces to organize your tables in a way that reflects your business domains, teams, or environments.
18+
As your table organization needs grow over time and your projects become more complex, you can use namespaces to organize your tables in a way that reflects your business domains, teams, or environments.
1919

2020
## Table operations with namespace paths
2121

@@ -27,9 +27,9 @@ Let's imagine a scenario where your table management needs have evolved, and you
2727
└── users (table)
2828
```
2929

30-
Below, we show how you would express table operations on that namespace. Each item in the namespace
30+
Below, we show how you would express table operations within that namespace. Each item in the namespace
3131
list (`["prod", "search"]`) represents a level in the namespace hierarchy, and the table name is
32-
specified when you create, open or drop it.
32+
specified when you create, open, or drop it.
3333

3434
<CodeGroup>
3535
<CodeBlock filename="Python" language="Python" icon="python">

0 commit comments

Comments
 (0)