From 85f0a0cd494151e4ddd1afd0fbf660e32b9ec31c Mon Sep 17 00:00:00 2001 From: The Dax Date: Fri, 4 Jul 2025 12:52:19 -0400 Subject: [PATCH] Fix doc comments --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 832bd49..1b3104f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -79,8 +79,8 @@ pub const COMPLETED_QUEST_BITMASK_SIZE: usize = 691; /// The operation opcode/type when discarding an item from the inventory. pub const INVENTORY_ACTION_DISCARD: u8 = 145; -// The operation opcode/type when moving an item to an emtpy slot in the inventory. +/// The operation opcode/type when moving an item to an emtpy slot in the inventory. pub const INVENTORY_ACTION_MOVE: u8 = 146; -// The operation opcode/type when moving an item to a slot occupied by another in the inventory. +/// The operation opcode/type when moving an item to a slot occupied by another in the inventory. pub const INVENTORY_ACTION_EXCHANGE: u8 = 147;