Skip to content

Commit 0a81502

Browse files
authored
chore: fix incorrect ordering of OS options in docs (#19384)
On https://coder.com/docs/install/uninstall at present we order the top OS listing as "Linux | macOS | Windows", while in the `Coder settings, cache, and the optional built-in PostgreSQL database` paragraph towards the bottom of the page we change to using "macOS | Linux | Windows" for some reason. This PR moves Linux to be listed first instead of macOS in the bottom paragraph to match the ordering of the top section.
1 parent 8f9f0cd commit 0a81502

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/install/uninstall.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,17 @@ performing the following step or copying the directory to another location.
7474

7575
<div class="tabs">
7676

77-
## macOS
77+
## Linux
7878

7979
```shell
80-
rm -rf ~/Library/Application\ Support/coderv2
80+
rm -rf ~/.config/coderv2
81+
rm -rf ~/.cache/coder
8182
```
8283

83-
## Linux
84+
## macOS
8485

8586
```shell
86-
rm -rf ~/.config/coderv2
87-
rm -rf ~/.cache/coder
87+
rm -rf ~/Library/Application\ Support/coderv2
8888
```
8989

9090
## Windows

0 commit comments

Comments
 (0)