Skip to content

Commit

Permalink
Standardize code block language casing in backup instructions.
Browse files Browse the repository at this point in the history
Updated the language attribute casing for code blocks to use consistent capitalization (e.g., "Bash" and "PowerShell") across all tabs. This improves clarity and ensures uniform formatting in the documentation.
  • Loading branch information
Gamer-VII committed Jan 18, 2025
1 parent 68b179e commit 5b3cd2e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Writerside/topics/profiles-backups.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,23 +34,23 @@ kill PID

<tabs>
<tab id="Linux-install" title="Linux">
<code-block lang="bash" >
<code-block lang="Bash" >
zip -r data.zip ./data
</code-block>

Данная команда создаст архив `data.zip` в текущей директории, содержащий файлы из папки `data`.
</tab>
<tab id="Windows-install" title="Windows">

<code-block lang="powershell" >
<code-block lang="PowerShell" >
Compress-Archive -Path .\data -DestinationPath data.zip
</code-block>

Эта команда создаст архив `data.zip` в текущей директории с файлами из папки `data`.
</tab>
<tab id="MacOS-install" title="MacOS">

<code-block lang="bash" >
<code-block lang="Bash" >
zip -r data.zip ./data
</code-block>

Expand Down

0 comments on commit 5b3cd2e

Please sign in to comment.