From 94e53c6331251ab2b3c7170b47a8d678c7e4a66e Mon Sep 17 00:00:00 2001 From: Kieran Lea Date: Thu, 9 May 2024 20:26:25 -0400 Subject: [PATCH] Fixed import typo in example in SECURITY.md Signed-off-by: Kieran Lea --- SECURITY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SECURITY.md b/SECURITY.md index 5866fff2b4..8de1307356 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -66,7 +66,7 @@ The insecure example above should instead be written like this: ```ts // THIS IS GOOD, DO THIS -import { resolveSafeChildPath } from '@backstaghe/backend-common'; +import { resolveSafeChildPath } from '@backstage/backend-common'; import fs from 'fs-extra'; function writeTemporaryFile(tmpDir: string, name: string, content: string) {