From d4d8938557f1a95678332e0d59797f5f8d8c518f Mon Sep 17 00:00:00 2001 From: cospeedster <52749645+cospeedster@users.noreply.github.com> Date: Mon, 7 Oct 2024 21:55:33 +0200 Subject: [PATCH] docs: Fix rendering for token regex (#332) Token regex was rendered as `"[a-z0-9]6.[a-z0-9]16"` instead of `[a-z0-9]{6}.[a-z0-9]{16}` Signed-off-by: cospeedster <52749645+cospeedster@users.noreply.github.com> --- docs/cli/token.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cli/token.md b/docs/cli/token.md index ae2c8fa64..c08b037f1 100644 --- a/docs/cli/token.md +++ b/docs/cli/token.md @@ -126,7 +126,7 @@ Flag | Description Generate a randomly-generated bootstrap token. -You don't have to use this command in order to generate a token. You can do so yourself as long as it is in the format "[a-z0-9]{6}.[a-z0-9]{16}", where the first portion is the token ID, and the second portion is the secret. +You don't have to use this command in order to generate a token. You can do so yourself as long as it is in the format `[a-z0-9]{6}.[a-z0-9]{16}`, where the first portion is the token ID, and the second portion is the secret. Flag | Description ---- | ----