From de8c8eacc837339f4ff79df061e4918b19025dac Mon Sep 17 00:00:00 2001 From: Mathieu DARTIGUES Date: Sun, 16 Feb 2025 17:47:11 +0100 Subject: [PATCH] Fix utilities checkContext arguments array Wrong markdown syntax, fixed --- docs/utilities.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/utilities.md b/docs/utilities.md index ce4609ba..140dbd5a 100644 --- a/docs/utilities.md +++ b/docs/utilities.md @@ -123,12 +123,12 @@ Restrict a hook to run for certain methods and method types. - `{String | Array< String >} [ methods ]` - `{String} [ label ]` -| Argument | Type | Default | Description | +| Argument | Type | Default | Description | | | --------- | :------: | ---------------- | --------------------------------- | --------------------------------------------------------------- | -| `context` | `Object` | | The hook context. | +| `context` | `Object` | | The hook context. | | | `type` | `String | Array< String >` | all types | The service type allowed - before, after, error. | | `methods` | `String | Array< String >` | all methods | The service methods allowed - find, get, update, patch, remove. | -| `label` | `String` | `'anonymous'` | Name of hook to use with `throw`. | +| `label` | `String` | `'anonymous'` | Name of hook to use with `throw`. | | - **Example**