Skip to content

Commit

Permalink
docs: Fix rendering for token regex (k3s-io#332)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
cospeedster authored Oct 7, 2024
1 parent b769cb6 commit d4d8938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/cli/token.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---- | ----
Expand Down

0 comments on commit d4d8938

Please sign in to comment.