From a612631aa42f25440d08f158de7a95c5e46f8af5 Mon Sep 17 00:00:00 2001 From: Imbris Date: Sat, 21 Aug 2021 15:19:12 +0000 Subject: [PATCH] Add comment on tuple bool field meaning in pathing --- common/src/path.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/common/src/path.rs b/common/src/path.rs index 7de1e7a5fc..6c6657cecd 100644 --- a/common/src/path.rs +++ b/common/src/path.rs @@ -326,6 +326,7 @@ impl Route { #[derive(Default, Clone, Debug)] pub struct Chaser { last_search_tgt: Option>, + /// `bool` indicates whether the Route is a complete route to the target route: Option<(Route, bool)>, /// We use this hasher (AAHasher) because: /// (1) we care about DDOS attacks (ruling out FxHash);