Update faq.rst

the correct output of `echo "~/documents"` is `~/documents`
This commit is contained in:
Ben Northway 2024-07-30 09:11:18 -06:00 committed by GitHub
parent 76d56e24d6
commit 98c73eeca9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -90,7 +90,7 @@ The error here is that the tilde ``~`` in ``"~/documents"`` didn't get expanded
/home/john/documents /home/john/documents
$ echo "~/documents" $ echo "~/documents"
~/document ~/documents
$ echo "$HOME/documents" $ echo "$HOME/documents"
/home/john/documents /home/john/documents