Skip to content

Commit e45e930

Browse files
committed
feat: clearly mark template code
1 parent e327f00 commit e45e930

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

src/bin/download.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* This file contains template code.
3+
* There is no need to edit this file unless you want to change template functionality.
4+
*/
15
use std::io::Write;
26
use std::path::PathBuf;
37
use std::{env::temp_dir, io, process::Command};

src/bin/scaffold.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* This file contains template code.
3+
* There is no need to edit this file unless you want to change template functionality.
4+
*/
15
use std::{
26
fs::{File, OpenOptions},
37
io::Write,

src/helpers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/*
22
* Use this file if you want to extract helpers from your solutions.
3-
* Example import from this file: `use aoc::helpers::example_fn;`
3+
* Example import from this file: `use aoc::helpers::example_fn;`.
44
*/

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
2-
* This file contains template helpers.
2+
* This file contains template code.
3+
* There is no need to edit this file unless you want to change template functionality.
34
* Prefer `./helpers.rs` if you want to extract code from your solutions.
45
*/
56
use std::env;

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file contains template code.
3-
* Unless you want to change how solutions are invoked, this file does not need to be edited.
3+
* There is no need to edit this file unless you want to change template functionality.
44
*/
55
use aoc::{ANSI_BOLD, ANSI_ITALIC, ANSI_RESET};
66
use std::process::Command;

0 commit comments

Comments
 (0)