Skip to content

Commit 321d1ee

Browse files
committed
fix example
1 parent 8d1729a commit 321d1ee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repository = "https://github.com/remi-dupre/aoc"
66
license = "Apache-2.0"
77
version = "0.1.0"
88
readme = "README.md"
9-
keywords = ["advent of code", "aoc", "macro"]
9+
keywords = ["advent", "aoc", "macro"]
1010
edition = "2018"
1111

1212
[dependencies]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Usage
1818
-----
1919

2020
The generator and solutions for a given day must be implemented in a module
21-
called `dayX`. Then you can simply invoke the `aoc::main!` macro in your
21+
called `dayX`. Then you can simply invoke the `aoc_main::main!` macro in your
2222
`main.rs`:
2323

2424
```rust
@@ -51,7 +51,7 @@ mod day1 {
5151
mod day2;
5252
mod day3;
5353

54-
aoc::main! {
54+
aoc_main::main! {
5555
year 2019;
5656
day1 : generator => part_1, part_2;
5757
day2 : generator => part_1, part_2, part_2_optimized;

0 commit comments

Comments
 (0)