From b85c0d3d1e7d8e8413796d18d9967bc4816b577a Mon Sep 17 00:00:00 2001 From: Mike Wu Date: Tue, 10 Sep 2024 23:22:11 +0900 Subject: [PATCH] typo --- src/lib/blueprint.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/blueprint.ts b/src/lib/blueprint.ts index 0683888..dc31d59 100644 --- a/src/lib/blueprint.ts +++ b/src/lib/blueprint.ts @@ -311,7 +311,7 @@ const getNamespace = (path: string, paths: OpenapiPaths): string | null => { for (const [index, part] of pathParts.entries()) { // Namespaces must be consecutive. If there was a path with an endpoint - // previously, then this part is not in the namesapce. + // previously, then this part is not in the namespace. if (namespace.length !== index) { continue }