diff --git a/README.md b/README.md index 79b616d..d74ac8c 100644 --- a/README.md +++ b/README.md @@ -71,9 +71,8 @@ the `mustExist` function looks: function mustExist(key: string): RoutingSchemaValidationFunction { return (context) => { /** - * The `context` could either be a `cookies`, + * `context` could either be a `cookies`, * `parameters`, `headers`, `query` or `body` object. - * Luckily, they all have the same type. */ return Object.keys(context).includes(key); };