From 5cb5cb9a507597416eb2d674c35667e830645556 Mon Sep 17 00:00:00 2001 From: Rhys Lloyd Date: Mon, 18 May 2026 13:43:39 -0700 Subject: [PATCH] tweak doc --- klondike/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/klondike/src/lib.rs b/klondike/src/lib.rs index 8fb13f9..e3f177f 100644 --- a/klondike/src/lib.rs +++ b/klondike/src/lib.rs @@ -631,7 +631,7 @@ impl Klondike { .filter(|ins| !ins.is_useless()) .min_by_key(|ins| self.instruction_priority(ins)) } - /// A list of possible moves sorted by a simple prioirty function + /// A list of possible moves with useless moves filtered out and sorted by a simple priority function pub fn get_sorted_moves(&self) -> Vec { let mut useful_moves: Vec<_> = self .possible_instructions()