summaryrefslogtreecommitdiff
path: root/src/bin/day_1.rs
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2019-12-02 22:08:56 +0200
committerJustin Wernick <justin@worthe-it.co.za>2019-12-02 22:08:56 +0200
commitaf487fe8cb2d7732283971a416d015234e8f71cc (patch)
treef8bf68c504943572f89279ff508a83abbb26971a /src/bin/day_1.rs
parent92106a053f87d44d5dba28a628aaeecba8417b5a (diff)
Day 2: Intcode machine!
Diffstat (limited to 'src/bin/day_1.rs')
-rw-r--r--src/bin/day_1.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/day_1.rs b/src/bin/day_1.rs
index f40237d..572d287 100644
--- a/src/bin/day_1.rs
+++ b/src/bin/day_1.rs
@@ -13,7 +13,7 @@ use structopt::StructOpt;
/// The weight of each module is read from stdin, one module weight
/// per line. See https://adventofcode.com/2019/day/1 for details.
struct Opt {
- /// Includes the weight of flue
+ /// Includes the weight of fuel
#[structopt(short = "i", long = "include-fuel-weight")]
include_fuel_weight: bool,
}