Consistent userdir/name example (#1210)

This commit is contained in:
Jan Brašna 2021-11-21 11:32:00 +01:00 committed by GitHub
parent 06d9c14e7a
commit 7dfa001d2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,19 +168,19 @@ the `http` command should point to your development copy:
```powershell ```powershell
# In PowerShell: # In PowerShell:
(httpie) PS C:\Users\ovezovs\httpie> Get-Command http (httpie) PS C:\Users\<user>\httpie> Get-Command http
CommandType Name Version Source CommandType Name Version Source
----------- ---- ------- ------ ----------- ---- ------- ------
Application http.exe 0.0.0.0 C:\Users\ovezovs\httpie\venv\Scripts\http.exe Application http.exe 0.0.0.0 C:\Users\<user>\httpie\venv\Scripts\http.exe
``` ```
```bash ```bash
# In CMD: # In CMD:
(httpie) C:\Users\ovezovs\httpie> where http (httpie) C:\Users\<user>\httpie> where http
C:\Users\ovezovs\httpie\venv\Scripts\http.exe C:\Users\<user>\httpie\venv\Scripts\http.exe
C:\Users\ovezovs\AppData\Local\Programs\Python\Python38-32\Scripts\http.exe C:\Users\<user>\AppData\Local\Programs\Python\Python38-32\Scripts\http.exe
(httpie) C:\Users\ovezovs\httpie> http --version (httpie) C:\Users\<user>\httpie> http --version
2.3.0-dev 2.3.0-dev
``` ```