Skip to content

Commit 9859b69

Browse files
authored
Minor fixes/changes to README
1 parent 8120d10 commit 9859b69

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If you haven't already, use the button shown below (or [this link](https://githu
2525

2626
Feel free to make any modifications you want. However, you probably do not want to remove any files outside of `AdventOfCode/Solutions/` unless you know what you're doing.
2727

28-
If any solutions files that you need are not already included, see **[Generating Previous Year's Solution Files](#generating-previous-years-solution-files)**.
28+
If any solution files that you need are not already included, see **[Generating Previous Year's Solution Files](#generating-previous-years-solution-files)**.
2929

3030
## Usage
3131
### Requirements
@@ -43,14 +43,16 @@ Create `config.json` with the following key/value pairs. If you run the program
4343

4444
`cookie` - Note that `c0nt3nt` must be replaced with a valid cookie value that your browser stores when logging in at adventofcode.com. Instructions on locating your session cookie can be found here: https://github.com/wimglenn/advent-of-code-wim/issues/1
4545

46-
`year` - Specifies which year you wish to output solutions for when running the project. If left unspecified will default to the current year.
46+
`year` - Specifies which year you wish to output solutions for when running the project. Defaults to the current year if left unspecified.
4747

48-
`days` - Specifies which days you wish to output solutions for when running the project. The field supports list comprehension syntax and strings, meaning the following notations are valid.
48+
`days` - Specifies which days you wish to output solutions for when running the project. Defaults to current day if left unspecified and an event is actively running, otherwise defaults to `0`.
49+
50+
The field supports list comprehension syntax and strings, meaning the following notations are valid.
4951
* `"1..4, 10"` - runs day 1, 2, 3, 4, and 10.
5052
* `[1, 3, "5..9", 15]` - runs day 1, 3, 5, 6, 7, 8, 9, and 15.
5153
* `0` - runs all days
5254

53-
Will default to current day if left unspecified and an event is actively running. Otherwise will default to `0`
55+
5456

5557
### Running the project
5658
Write your code solutions to advent of code within the appropriate day classes in the Solutions folder, and run the project. From the command line you may do as follows.

0 commit comments

Comments
 (0)