From 8ed50da7c0221627f2bd6579f4494567f0b5d567 Mon Sep 17 00:00:00 2001 From: al Date: Wed, 26 Nov 2025 08:57:34 -0500 Subject: [PATCH] Typo in comment --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index ca2e380..da1c793 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,7 +2,7 @@ use rand::rng; use rand::seq::SliceRandom; use std::fmt::{Display, Formatter}; -/// `pick` must be an bijection +/// `pick` must be permutative trait Player { /// takes a cycle number and returns a box index fn choose(&mut self, cycle: usize, num_boxes: usize) -> usize;