diff --git a/src/mapping-entry.ts b/src/mapping-entry.ts index 173a96c..5d900b3 100644 --- a/src/mapping-entry.ts +++ b/src/mapping-entry.ts @@ -25,7 +25,7 @@ export function getAbsoluteMappingEntries( ): ReadonlyArray { // Resolve all paths to absolute form once here, and sort them by // longest prefix once here, this saves time on each request later. - // We need to put them in an array to preseve the sorting order. + // We need to put them in an array to preserve the sorting order. const sortedKeys = sortByLongestPrefix(Object.keys(paths)); const absolutePaths: Array = []; for (const key of sortedKeys) {