From cc87d8c31d4d7e126a79c2b724f31f756825948c Mon Sep 17 00:00:00 2001 From: bombillazo Date: Sun, 18 Feb 2024 02:43:01 -0400 Subject: [PATCH] chore: fix format --- docs/README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/README.md b/docs/README.md index fc802f3..c476307 100644 --- a/docs/README.md +++ b/docs/README.md @@ -791,9 +791,10 @@ the strategy and internal decoders. ``` The driver takes care of parsing the related `array` OID types automatically. -For example, if a custom decoder is defined for the `int4` type, it will be applied -when parsing `int4[]` arrays. If needed, you can have separate custom decoders for the -array and non-array types by defining another custom decoders for the array type itself. +For example, if a custom decoder is defined for the `int4` type, it will be +applied when parsing `int4[]` arrays. If needed, you can have separate custom +decoders for the array and non-array types by defining another custom decoders +for the array type itself. ```ts {