From 833ed03ba12d1f1eb824dfe2d00d2ffb8116cf99 Mon Sep 17 00:00:00 2001 From: TheBedDev <240914167+thebeddev-code@users.noreply.github.com> Date: Tue, 10 Mar 2026 13:28:06 +0000 Subject: [PATCH] chore(docs): clarify wording in env modification section - Added a clarifying comment for PATH export command - Rewrote section title, to clearly stated what the commands needed for I thought a section about modifying PATH env to make Go globally accessible sounded a bit misleading. The section doesn't clearly point out that the command `export PATH` should be added to bashrc or zshrc, and should not be executed in terminal session (since persistence is desired). This confusion is created because the section's block combines both command for env modify and reload in one block without much emphasis on where the commands should go to. --- docs/src/content/docs/quick-start/installation.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/content/docs/quick-start/installation.mdx b/docs/src/content/docs/quick-start/installation.mdx index 20bdc51ba..6f15eee90 100644 --- a/docs/src/content/docs/quick-start/installation.mdx +++ b/docs/src/content/docs/quick-start/installation.mdx @@ -87,9 +87,9 @@ If `wails3 doctor` passes, you're done. [Skip to First App →](/quick-start/fir sudo pacman -S go ``` - **Add to PATH** (add to `~/.bashrc` or `~/.zshrc`): + **Modify enviromental variables to make Go globally accessable**: ```bash - export PATH=$PATH:/usr/local/go/bin:~/go/bin + export PATH=$PATH:/usr/local/go/bin:~/go/bin # Append to the end of ~/.bashrc or ~/.zshrc for persistence. source ~/.bashrc # Reload ```