From 70ed330dec231cf90614c71f9893aeeb016c4145 Mon Sep 17 00:00:00 2001 From: fox0430 Date: Wed, 22 Apr 2026 16:07:31 +0900 Subject: [PATCH] doc: Fix broken link --- async_postgres/pg_bytes.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/async_postgres/pg_bytes.nim b/async_postgres/pg_bytes.nim index 0fa9868..540df94 100644 --- a/async_postgres/pg_bytes.nim +++ b/async_postgres/pg_bytes.nim @@ -42,7 +42,7 @@ proc readString*(src: openArray[byte], off, len: int): string = copyMem(addr result[0], addr src[off], len) proc readBytes*(src: openArray[byte], off, len: int): seq[byte] = - ## Copy `len` bytes from src starting at off into a new seq[byte]. + ## Copy `len` bytes from src starting at off into a new `seq[byte]`. result = newSeq[byte](len) if len > 0: copyMem(addr result[0], addr src[off], len)