From 873d7b406a37e1b7fb0786624c903904a65d43cd Mon Sep 17 00:00:00 2001 From: conduition Date: Sun, 10 Mar 2024 16:57:57 +0000 Subject: [PATCH] fix duplicated comment --- src/contract/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/contract/mod.rs b/src/contract/mod.rs index 7b87a05..9f443bd 100644 --- a/src/contract/mod.rs +++ b/src/contract/mod.rs @@ -19,8 +19,8 @@ use std::collections::{BTreeMap, BTreeSet}; /// index in the sorted set of players. pub type PlayerIndex = usize; -/// A type alias for clarity. Players in the DLC are often referred to by their -/// index in the sorted set of players. +/// A type alias for clarity. DLC outcomes are sometimes referred to by their +/// index in the set of possible outcome messages. pub type OutcomeIndex = usize; /// Represents a mapping of player to payout weight for a given outcome.