From b9e8edf9013987a8144135fe1cf190b8746a3784 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Thu, 10 Oct 2024 11:10:55 +0100 Subject: [PATCH] fix(cbor): fix module specifier in import (#6099) --- cbor/encode_cbor_sequence.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cbor/encode_cbor_sequence.ts b/cbor/encode_cbor_sequence.ts index 40f9e0811..98189416e 100644 --- a/cbor/encode_cbor_sequence.ts +++ b/cbor/encode_cbor_sequence.ts @@ -1,6 +1,6 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -import { concat } from "../bytes/concat.ts"; +import { concat } from "@std/bytes/concat"; import { encodeCbor } from "./encode_cbor.ts"; import type { CborType } from "./types.ts";