docs: fix talosctl inspect dependencies example indentation

Adds missing whitespace to ensure correct rendering on web

Signed-off-by: Oscar Utbult <oscar.utbult@gmail.com>
Signed-off-by: Noel Georgi <git@frezbo.dev>
This commit is contained in:
Oscar Utbult 2023-11-23 11:10:16 +01:00 committed by Noel Georgi
parent fbcf4264ff
commit e4a050cb1d
No known key found for this signature in database
GPG Key ID: 21A9F444075C9E36
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ var inspectDependenciesCmd = &cobra.Command{
Pipe the output of the command through the "dot" program (part of graphviz package) Pipe the output of the command through the "dot" program (part of graphviz package)
to render the graph: to render the graph:
talosctl inspect dependencies | dot -Tpng > graph.png talosctl inspect dependencies | dot -Tpng > graph.png
`, `,
Args: cobra.NoArgs, Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error { RunE: func(cmd *cobra.Command, args []string) error {

View File

@ -1937,7 +1937,7 @@ Inspect controller-resource dependencies as graphviz graph.
Pipe the output of the command through the "dot" program (part of graphviz package) Pipe the output of the command through the "dot" program (part of graphviz package)
to render the graph: to render the graph:
talosctl inspect dependencies | dot -Tpng > graph.png talosctl inspect dependencies | dot -Tpng > graph.png
``` ```