Skip to main content

Don’t use zero-based numbering

ID
a0be2e4
date
2026-01-07 21:20:43+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
a6254af
message
Don't use zero-based numbering
changed files
1 file, 4 additions, 4 deletions

Changed files

README.md (2443) → README.md (2443)

diff --git a/README.md b/README.md
index 6c3c0fc..bb6b3b7 100644
--- a/README.md
+++ b/README.md
@@ -69,24 +69,24 @@ printShapeInfo: a triangle has 3 sides
 
 ## Installation
 
-0.  Read the file `q.go` and make sure you're happy with what it's doing.
+1.  Read the file `q.go` and make sure you're happy with what it's doing.
     It's barely a hundred lines of code.
     Make sure I'm not secretly sending all your logs to my web server!
 
-1.  Clone this repo:
+2.  Clone this repo:
 
     ```console
     $ git clone https://github.com/alexwlchan/q.go.git ~/repos/q
     ```
 
-2.  Create a directory `q` in the root of the project where you want to use this code, and symlink `q.go` from your checkout:
+3.  Create a directory `q` in the root of the project where you want to use this code, and symlink `q.go` from your checkout:
 
     ```console
     $ mkdir q
     $ ln -s ~/repos/q/q.go q/q.go
     ```
 
-3.  Add the `q.go` file to your `.git/info/exclude` file, so it will be ignored by Git:
+4.  Add the `q.go` file to your `.git/info/exclude` file, so it will be ignored by Git:
 
     ```console
     $ echo q.go >> .git/info/exclude