diff --git a/src/common/params.ts b/src/common/params.ts index e0b0b8537..b6b225cb1 100644 --- a/src/common/params.ts +++ b/src/common/params.ts @@ -73,7 +73,7 @@ export type Extract = Part extends `{${infer Param}=**}` : never; /** - * A type that maps all parameter capture gropus into keys of a record. + * A type that maps all parameter capture groups into keys of a record. * For example, ParamsOf<"users/{uid}"> is { uid: string } * ParamsOf<"users/{uid}/logs/{log}"> is { uid: string; log: string } * ParamsOf<"some/static/data"> is {}