From e248e795a1fdf030978994e44cb8b110c7203674 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Mon, 24 May 2021 00:06:03 +0300 Subject: [PATCH] fixing tests --- common/src/comp/inventory/loadout_builder.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/src/comp/inventory/loadout_builder.rs b/common/src/comp/inventory/loadout_builder.rs index 8761c976e4..8d7cd0bf79 100644 --- a/common/src/comp/inventory/loadout_builder.rs +++ b/common/src/comp/inventory/loadout_builder.rs @@ -59,11 +59,10 @@ pub enum LoadoutConfig { enum ItemSpec { /// One specific item. /// Example: - /// `Item("common.items.armor.steel.foot")` + /// Item("common.items.armor.steel.foot") Item(String), /// Choice from items with weights. /// Example: - /// ``` /// Choice([ /// (1.0, Some(Item("common.items.lantern.blue_0"))), /// (1.0, None),