Updating roll doc
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Matthew Sparks 2021-09-17 22:08:51 -04:00
parent f904e3a948
commit 1992ef4e08
1 changed files with 3 additions and 1 deletions

View File

@ -19,7 +19,9 @@ pub trait Rolled {
}
#[derive(Debug, PartialEq, Eq, Clone)]
// array of rolls in order, how many dice to keep, and how many to drop
/// array of rolls in order, how many dice to keep, and how many to drop
/// keep indicates how many of the highest dice to keep
/// drop indicates how many of the highest dice to drop
pub struct DiceRoll (pub Vec<u32>, usize, usize);
impl DiceRoll {