Select the types of activity you want to include in your feed.
loc,json,csv,sexp,toml,xml,opam,rego,sbom: rename Meta.textloc to Meta.loc
Follow up to the loc/json reorg: the [textloc] field of [Meta] is renamed to [loc] across every text-codec consumer. Pure mechanical rename, no behaviour change.
···4343 | Type_error s -> Fmt.pf ppf "type error: %s" s
44444545let data_error_of_json_error (e : Json.Error.t) =
4646- let tl = Json.Meta.textloc e.meta in
4646+ let tl = Json.Meta.loc e.meta in
4747 let loc = if Loc.is_none tl then None else Some (Fmt.str "%a" Loc.pp tl) in
4848 Data_error { reason = Json.Error.to_string e; loc }
4949