doc: remove double plus signs

Signed-off-by: zeshanziya <zeshan.ziya@axelerant.com>
This commit is contained in:
zeshanziya
2024-08-26 14:48:04 +05:30
parent 9153833be4
commit 33701d9bc0
@@ -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();
```