From 0ae21c4bce4bf5f741f30a901ec0561eb46908ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-S=C3=A9bastien=20Herbaux?= Date: Wed, 14 Dec 2022 17:32:21 +0100 Subject: [PATCH] Update comment for the links export in the strapi source provider Co-authored-by: Ben Irvin --- .../lib/providers/local-strapi-source-provider/links.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/data-transfer/lib/providers/local-strapi-source-provider/links.ts b/packages/core/data-transfer/lib/providers/local-strapi-source-provider/links.ts index 2a967792ca..5387c45002 100644 --- a/packages/core/data-transfer/lib/providers/local-strapi-source-provider/links.ts +++ b/packages/core/data-transfer/lib/providers/local-strapi-source-provider/links.ts @@ -4,7 +4,7 @@ import type { ILink } from '../../../types'; import { createLinkQuery } from '../shared/strapi/link'; /** - * Create a Duplex instance which will stream all the links from a Strapi instance + * Create a Readable which will stream all the links from a Strapi instance */ export const createLinksStream = (strapi: Strapi.Strapi): Readable => { const uids = [...Object.keys(strapi.contentTypes), ...Object.keys(strapi.components)] as string[];