ATProto Personal Data Server storage for OCaml
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocaml-pds: fix doc-comment marker in lib/blob_store.mli

The {[ ... ]} block in blob_store.mli was an ASCII filesystem tree
diagram (with box-drawing characters and `...` ellipses), not OCaml
code. Switched to {v ... v} verbatim per the mdx skill so future
coverage walks of the repo do not try to typecheck the diagram.

+2 -2
+2 -2
lib/blob_store.mli
··· 6 6 (** Filesystem-based blob storage with CID-based paths. 7 7 8 8 Blobs are stored in a directory structure organized by CID prefix: 9 - {[ 9 + {v 10 10 blobs/ 11 11 ├── ba/ 12 12 │ └── bafyrei... 13 13 └── bf/ 14 14 └── bafybei... 15 - ]} *) 15 + v} *) 16 16 17 17 type t 18 18 (** Blob store handle. *)