From 6f3245f06a728b9b5d63bcd69a0214499300e028 Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Fri, 12 Dec 2025 01:23:04 +0800 Subject: [PATCH] fixes documentation building failures for nightlies (#25345) ``` Error: '`' expected ``` --- compiler/ast2nif.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/ast2nif.nim b/compiler/ast2nif.nim index aa67d5e8c9..1c6b9571c0 100644 --- a/compiler/ast2nif.nim +++ b/compiler/ast2nif.nim @@ -1411,7 +1411,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)