From 92ff994b3850c23cb89dc0b474b22c67bb392fc7 Mon Sep 17 00:00:00 2001 From: Azri Kahar <42867097+azrikahar@users.noreply.github.com> Date: Sat, 4 Sep 2021 06:26:55 +0800 Subject: [PATCH] fix minor typo in api-hooks.md (#7821) --- docs/guides/api-hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/api-hooks.md b/docs/guides/api-hooks.md index 71cf112fd0..cbfafa60aa 100644 --- a/docs/guides/api-hooks.md +++ b/docs/guides/api-hooks.md @@ -141,7 +141,7 @@ module.exports = function registerHook() { ## 4. Develop your Custom Hook > Hooks can impact performance when not carefully implemented. This is especially true for `before` hooks (as these are -> blocking) and hooks on `read` actions, as a single request can result in a large ammount of database reads. +> blocking) and hooks on `read` actions, as a single request can result in a large amount of database reads. ### Register Function