Skip to content

Commit 422c38d

Browse files
authored
docs: fix checklinks (#3532)
1 parent eddb670 commit 422c38d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/introduction/read_and_write.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ For example, to delete Bob's row from the dataset above, one could use:
7070

7171
.. note::
7272

73-
:doc:`Lance Format is immutable <./format>`. Each write operation creates a new version of the dataset,
73+
:doc:`Lance Format is immutable <../format>`. Each write operation creates a new version of the dataset,
7474
so users must reopen the dataset to see the changes. Likewise, rows are removed by marking
7575
them as deleted in a separate deletion index, rather than rewriting the files. This approach
7676
is faster and avoids invalidating any indices that reference the files, ensuring that subsequent

python/python/lance/dataset.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def scanner(
333333
All columns are fetched if None or unspecified.
334334
filter: pa.compute.Expression or str
335335
Expression or str that is a valid SQL where clause. See
336-
`Lance filter pushdown <https://lancedb.github.io/lance/read_and_write.html#filter-push-down>`_
336+
`Lance filter pushdown <https://lancedb.github.io/lance/introduction/read_and_write.html#filter-push-down>`_
337337
for valid SQL expressions.
338338
limit: int, default None
339339
Fetch up to this many rows. All rows if None or unspecified.
@@ -554,7 +554,7 @@ def to_table(
554554
All columns are fetched if None or unspecified.
555555
filter : pa.compute.Expression or str
556556
Expression or str that is a valid SQL where clause. See
557-
`Lance filter pushdown <https://lancedb.github.io/lance/read_and_write.html#filter-push-down>`_
557+
`Lance filter pushdown <https://lancedb.github.io/lance/introduction/read_and_write.html#filter-push-down>`_
558558
for valid SQL expressions.
559559
limit: int, default None
560560
Fetch up to this many rows. All rows if None or unspecified.

0 commit comments

Comments
 (0)