Skip to content
This repository was archived by the owner on Aug 2, 2025. It is now read-only.

Commit 68b9579

Browse files
fix: wrong indentation
1 parent 34b15ce commit 68b9579

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

docs/01 Introduction/01_Installing_dependencies.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,28 @@ We’ll use the **Visual Studio compiler** on Windows (instead of Clang) due to
2323

2424
1. **Install Chocolatey** (Windows package manager) from an **elevated** (administrator) PowerShell session:
2525

26-
```powershell
27-
Set-ExecutionPolicy Bypass -Scope Process -Force; `
28-
[System.Net.ServicePointManager]::SecurityProtocol = `
29-
[System.Net.ServicePointManager]::SecurityProtocol -bor 3072; `
30-
iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
31-
```
26+
```powershell
27+
Set-ExecutionPolicy Bypass -Scope Process -Force; `
28+
[System.Net.ServicePointManager]::SecurityProtocol = `
29+
[System.Net.ServicePointManager]::SecurityProtocol -bor 3072; `
30+
iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
31+
```
3232
33-
:::tip
34-
If PowerShell requests script execution permissions, enable them with:
33+
:::caution
34+
If PowerShell requests script execution permissions, enable them with:
3535
36-
```powershell
37-
Set-ExecutionPolicy AllSigned
38-
```
36+
```powershell
37+
Set-ExecutionPolicy AllSigned
38+
```
3939
40-
:::
40+
:::
4141
4242
2. Install LLVM (Clang) and Ninja
4343
44-
```powershell
45-
choco install llvm
46-
choco install ninja
47-
```
44+
```powershell
45+
choco install llvm
46+
choco install ninja
47+
```
4848
4949
### 3. Misc Tools
5050

0 commit comments

Comments
 (0)