Typo in comment

This commit is contained in:
al 2025-11-26 08:57:34 -05:00
parent 637093861d
commit 8ed50da7c0

View file

@ -2,7 +2,7 @@ use rand::rng;
use rand::seq::SliceRandom; use rand::seq::SliceRandom;
use std::fmt::{Display, Formatter}; use std::fmt::{Display, Formatter};
/// `pick` must be an bijection /// `pick` must be permutative
trait Player { trait Player {
/// takes a cycle number and returns a box index /// takes a cycle number and returns a box index
fn choose(&mut self, cycle: usize, num_boxes: usize) -> usize; fn choose(&mut self, cycle: usize, num_boxes: usize) -> usize;