From aa3ae68cc5b3bca50e3761cd7c0a25f334dc5140 Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Wed, 10 Dec 2025 12:54:47 +0800 Subject: [PATCH] fixes documentation building failures for nightlies --- compiler/ast2nif.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/ast2nif.nim b/compiler/ast2nif.nim index b5f229d94a..b8c14ae445 100644 --- a/compiler/ast2nif.nim +++ b/compiler/ast2nif.nim @@ -1383,7 +1383,7 @@ proc toNifIndexFilename*(conf: ConfigRef; f: FileIndex): string = result = toGeneratedFile(conf, AbsoluteFile(suffix), ".s.idx.nif").string proc parseTypeSymIdToItemId*(c: var DecodeContext; symId: nifstreams.SymId): ItemId = - ## Parses a type SymId (format: "`tN.modulesuffix") to extract ItemId. + ## Parses a type SymId (format: `"`tN.modulesuffix"`) to extract ItemId. let s = pool.syms[symId] if not s.startsWith("`t"): return ItemId(module: -1, item: 0)