Skip to content

Commit

Permalink
Fix wrong order of code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
GabiNecasova committed Nov 6, 2023
1 parent 87c562a commit 25acb0b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/pages/get-started.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,20 @@ const GetHelpSection = () => {
</p>
{/* prettier-ignore */}
<CodeBlock language="bash" showLineNumbers>
$ podman --help # get a list of all commands {'\n'}
$ podman subcommand --help # get info on a command{' '}
{'\n'}
$ man podman {'\n'}
$ man podman subcommand {'\n'}
</CodeBlock>

</div>
<div className="container grid grid-cols-1 gap-y-4 lg:grid-cols-2 lg:gap-y-0">
<p className="max-w-sm text-white">
To get some help and find out how Podman is working, you can use the help.
</p>
{/* prettier-ignore */}
<CodeBlock language="bash" showLineNumbers>
$ man podman {'\n'}
$ man podman subcommand {'\n'}
$ podman --help # get a list of all commands {'\n'}
$ podman subcommand --help # get info on a command{' '}
{'\n'}
</CodeBlock>
</div>
</div>
Expand Down

0 comments on commit 25acb0b

Please sign in to comment.