From 8087c0abbcdc6fa7fb7b85de3746a7be2ad6914b Mon Sep 17 00:00:00 2001 From: pinglanlu Date: Thu, 16 Jan 2025 18:59:32 +0800 Subject: [PATCH] chore: fix 404 status URL Signed-off-by: pinglanlu --- src/lib/ml/base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ml/base.ts b/src/lib/ml/base.ts index e5f9bf43fc..69d53ac837 100644 --- a/src/lib/ml/base.ts +++ b/src/lib/ml/base.ts @@ -34,7 +34,7 @@ type MlArrayOptionalElements = { /** * js_of_ocaml representation of a byte array, - * see https://github.com/ocsigen/js_of_ocaml/blob/master/runtime/mlBytes.js + * see https://github.com/ocsigen/js_of_ocaml/blob/master/runtime/js/mlBytes.js */ type MlBytes = { t: number; c: string; l: number }; type MlString = MlBytes;