From 33701d9bc00cb73361ed6fc2f8a57ba1be8b390d Mon Sep 17 00:00:00 2001 From: zeshanziya Date: Mon, 26 Aug 2024 14:48:04 +0530 Subject: [PATCH] doc: remove double plus signs Signed-off-by: zeshanziya --- .../README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/catalog-backend-module-incremental-ingestion/README.md b/plugins/catalog-backend-module-incremental-ingestion/README.md index 15b84dd4a0..3b847d4ad7 100644 --- a/plugins/catalog-backend-module-incremental-ingestion/README.md +++ b/plugins/catalog-backend-module-incremental-ingestion/README.md @@ -46,19 +46,19 @@ The Incremental Entity Provider backend is designed for data sources that provid 2. Add the following code to the `packages/backend/src/index.ts` file: ```diff -++import { catalogModuleCustomIncrementalIngestionProvider } from './extensions/catalogCustomIncrementalIngestion'; ++ import { catalogModuleCustomIncrementalIngestionProvider } from './extensions/catalogCustomIncrementalIngestion'; const backend = createBackend(); -++backend.add( -++ import( -++ '@backstage/plugin-catalog-backend-module-incremental-ingestion/alpha' -++ ), -++); ++ backend.add( ++ import( ++ '@backstage/plugin-catalog-backend-module-incremental-ingestion/alpha' ++ ), ++ ); // We have created this in section **Adding an Incremental Entity Provider to the catalog** -++ backend.add(catalogModuleCustomIncrementalIngestionProvider); ++ backend.add(catalogModuleCustomIncrementalIngestionProvider); backend.start(); ```