toc icon indicating copy to clipboard operation
toc copied to clipboard

Minor errors in README.md

Open threepistons opened this issue 2 years ago • 0 comments

$ git clone https://github.com/ycd/toc 
$ cd ycd

should say

$ git clone https://github.com/ycd/toc 
$ cd toc

because git clones to a directory called "toc".

Likewise

# May require you to use sudo
$ go build .
$ cp toc /usr/local/toc

should say

$ go build .
# May require you to use sudo
$ cp toc /usr/local/bin

because the go build . step writes to a place that the user can write to, but "/usr/local/bin" is not where a user can usually write to. "/usr/local" isn't in most people's $PATH but "/usr/local/bin" is.

threepistons avatar Feb 07 '24 16:02 threepistons