From 1245ba19477f673a7c8e727ab5e678e044fe97f4 Mon Sep 17 00:00:00 2001 From: Rhys Lloyd Date: Tue, 7 Jul 2026 19:03:01 -0700 Subject: [PATCH] doc --- card_game/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/card_game/src/lib.rs b/card_game/src/lib.rs index 5732300..601db9f 100644 --- a/card_game/src/lib.rs +++ b/card_game/src/lib.rs @@ -35,6 +35,7 @@ pub trait Game: Clone { } /// Call .commit() to run the staged instruction. +/// Cannot be constructed other than by Game::stage_instruction. pub struct StagedInstruction<'a, G: Game> { game: &'a mut G, stats: &'a mut G::Stats,