From 36465932582051757fff0160b0023775a31a8c2a Mon Sep 17 00:00:00 2001 From: aaron-jack-manning Date: Sat, 25 Jun 2022 18:48:22 +1000 Subject: [PATCH] 0.1.1 documentation comments --- Cargo.toml | 2 +- makefile | 2 +- src/main.rs | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2afe982..140c499 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vote-counter" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "An opinionated single transferrable vote counter for the command line." license = "MIT OR Apache-2.0" diff --git a/makefile b/makefile index 3fb86a7..1ecf5e4 100644 --- a/makefile +++ b/makefile @@ -1,2 +1,2 @@ all: - cargo run --release sample.csv --threshold 0.5 + cargo run --release sample.csv --report diff --git a/src/main.rs b/src/main.rs index 9e110a9..85065a2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,7 +13,6 @@ use clap::Parser; #[derive(Parser, Debug)] #[clap(author, version)] -/// Stores the command line arguments. struct Args { /// Path to the CSV containing the ballots. #[clap()]