From 17af3bace1975d7d3bef1a9f23d461539c9c7525 Mon Sep 17 00:00:00 2001 From: twodayslate Date: Sun, 22 Dec 2024 12:54:30 +0000 Subject: [PATCH] docs: fix code example syntax (#348) --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index 481f8a5..e302c6c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -31,7 +31,7 @@ feel right at home with Stencil. ] ] - let environment = Environment(loader: FileSystemLoader(paths: ["templates/"]) + let environment = Environment(loader: FileSystemLoader(paths: ["templates/"])) let rendered = try environment.renderTemplate(name: "articles.html", context: context) print(rendered)