From 89ab4558e04f712e30c0e7b02f149a88263060b9 Mon Sep 17 00:00:00 2001 From: James Rosewell Date: Fri, 12 Jun 2026 09:22:23 +0100 Subject: [PATCH] Fix malformed TOML example in Fastly setup guide The [ec] configuration example in docs/guide/fastly.md carried stray characters from a copy-paste artifact, leaving the snippet invalid: passphrase = "replace-with-32-plus-byte-random-secret"}]}},{ Remove the trailing characters so the example parses as TOML. --- docs/guide/fastly.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/fastly.md b/docs/guide/fastly.md index d2227e45..20faf199 100644 --- a/docs/guide/fastly.md +++ b/docs/guide/fastly.md @@ -112,7 +112,7 @@ Configure in `trusted-server.toml`: ```toml [ec] -passphrase = "replace-with-32-plus-byte-random-secret"}]}},{ +passphrase = "replace-with-32-plus-byte-random-secret" ec_store = "ec_identity_store" ```