Skip to content

Commit c00686e

Browse files
committed
docs: clarify comment about filtering document rows
1 parent 4475e39 commit c00686e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/tests/fireproof/repro-blocks.process.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async function findAll(db: Database): Promise<Record[]> {
2323
{ descending: true },
2424
);
2525
return result.rows
26-
.filter((row) => row.doc) // Filter out any rows without documents
26+
.filter((row) => row.doc) // Filter out rows without documents
2727
.map((row) => row.doc as Record);
2828
}
2929

0 commit comments

Comments
 (0)