Skip to content

Commit 5b3cd2e

Browse files
committed
Standardize code block language casing in backup instructions.
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.
1 parent 68b179e commit 5b3cd2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Writerside/topics/profiles-backups.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,23 @@ kill PID
3434

3535
<tabs>
3636
<tab id="Linux-install" title="Linux">
37-
<code-block lang="bash" >
37+
<code-block lang="Bash" >
3838
zip -r data.zip ./data
3939
</code-block>
4040

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

45-
<code-block lang="powershell" >
45+
<code-block lang="PowerShell" >
4646
Compress-Archive -Path .\data -DestinationPath data.zip
4747
</code-block>
4848

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

53-
<code-block lang="bash" >
53+
<code-block lang="Bash" >
5454
zip -r data.zip ./data
5555
</code-block>
5656

0 commit comments

Comments
 (0)