Skip to content

Commit c149ef3

Browse files
committed
docs: alphabetize OS tabs on installation page
Matches the order used on the runtime landing page (Linux, macOS, Windows). macOS keeps the 'default' attribute as the fallback when the JS auto-detect added in #3172 isn't conclusive.
1 parent 3cdf38c commit c149ef3

1 file changed

Lines changed: 21 additions & 21 deletions

File tree

runtime/getting_started/installation.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,27 @@ Linux, both x64 and aarch64 (arm64) are supported.
1919
scripts to download and install the binary.
2020

2121
<deno-tabs group-id="operating-systems">
22+
<deno-tab value="linux" label="Linux">
23+
24+
Using Shell:
25+
26+
```shell
27+
curl -fsSL https://deno.land/install.sh | sh
28+
```
29+
30+
Using [npm](https://npmjs.com/package/deno):
31+
32+
```shell
33+
npm install -g deno
34+
```
35+
36+
Using [Nix](https://nixos.org/download.html):
37+
38+
```shell
39+
nix-shell -p deno
40+
```
41+
42+
</deno-tab>
2243
<deno-tab value="mac" label="macOS" default>
2344

2445
Using Shell:
@@ -88,27 +109,6 @@ Using [Winget](https://github.com/microsoft/winget-cli):
88109
winget install DenoLand.Deno
89110
```
90111

91-
</deno-tab>
92-
<deno-tab value="linux" label="Linux">
93-
94-
Using Shell:
95-
96-
```shell
97-
curl -fsSL https://deno.land/install.sh | sh
98-
```
99-
100-
Using [npm](https://npmjs.com/package/deno):
101-
102-
```shell
103-
npm install -g deno
104-
```
105-
106-
Using [Nix](https://nixos.org/download.html):
107-
108-
```shell
109-
nix-shell -p deno
110-
```
111-
112112
</deno-tab>
113113
</deno-tabs>
114114

0 commit comments

Comments
 (0)