Skip to content

Commit 2b5b1ef

Browse files
committed
fixup! refactor: use string interpolation in Core and Console
1 parent 77b6ae1 commit 2b5b1ef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/generators/lunr.fsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ let generate (ctx : SiteContents) (projectRoot: string) (page: string) =
4242

4343
let gen =
4444
let ctn =
45-
$"%s{generatorOutput.AssemblyGroup.Name} \n %s{(generatorOutput.AssemblyGroup.Namespaces |> Seq.map (fun n -> n.Name) |> String.concat " ")}"
45+
let namespaces = generatorOutput.AssemblyGroup.Namespaces |> Seq.map (fun n -> n.Name) |> String.concat " "
46+
$"%s{generatorOutput.AssemblyGroup.Name} \n %s{namespaces}"
4647
{uri = $"{rootUrl}/reference/%s{n.Label}/index.html"; title = $"%s{n.Label} - API Reference"; content = ctn }
4748

4849
let mdlsGen =

0 commit comments

Comments
 (0)