]> Trent Huber's Code - adventOfGo2025.git/commitdiff
Update README.md
authorTrent Huber <trentmhuber@gmail.com>
Thu, 18 Dec 2025 00:10:53 +0000 (19:10 -0500)
committerTrent Huber <trentmhuber@gmail.com>
Thu, 18 Dec 2025 00:10:53 +0000 (19:10 -0500)
README.md

index 50ebac50d433b0f2cc353a25ec5a5bf687420d50..1f6dc96e557a8ab8fd9d7d1893f742419ea9d049 100644 (file)
--- a/README.md
+++ b/README.md
@@ -9,13 +9,13 @@ that day.
 ## Building
 
 To build any file, just use the `go build` command. The program reads its input
-from a file named `input.txt` located in the same directory that you're running
-the program in. To specify whether you'd like to process the input according to
-the first or second part of that day's challenge, you can either pass a `1` or a
-`2` as a command line argument. Each challenge comes with additional smaller
-input used for basic testing that can be copied to a file named `test.txt`.
-Passing `test` as a command line argument will have the program read input from
-`test.txt` instead.
+from a file named `input.txt`. To specify whether you'd like to process the
+input according to the first or second part of that day's challenge, you can
+either pass a `1` or a `2` as a command line argument.
+
+Each challenge comes with additional input used for basic testing that can be
+pasted into a file named `test.txt`.  Passing `test` as a command line argument
+will have the program read input from `test.txt` instead of `input.txt`.
 
 If you find this code at all useful, I've included a template, `template.go`,
 that can be used for any other Advent of Code challenges.