From eefc9a2a5a2e5a4c4a301c89e41178d5f4b97df3 Mon Sep 17 00:00:00 2001 From: Serkyo Date: Sun, 12 Jul 2026 00:41:34 +0200 Subject: [PATCH] docs(workspace): unwrap pre-wrapped module doc comments --- crates/server/src/main.rs | 3 +-- crates/shared/src/lib.rs | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/crates/server/src/main.rs b/crates/server/src/main.rs index e87a33a..89b1aa2 100644 --- a/crates/server/src/main.rs +++ b/crates/server/src/main.rs @@ -2,8 +2,7 @@ //! Dedicated server for Synvael. //! -//! The server handles the authoritative game simulation, including world -//! management, physics, and combat. +//! The server handles the authoritative game simulation, including world management, physics, and combat. /// Entity components describing players and other world-streaming anchors. pub mod player; diff --git a/crates/shared/src/lib.rs b/crates/shared/src/lib.rs index 9d0b525..cfa695b 100644 --- a/crates/shared/src/lib.rs +++ b/crates/shared/src/lib.rs @@ -2,8 +2,7 @@ //! Shared types and logic for Synvael. //! -//! This crate contains data structures and constants that are used by both -//! the client and the server. +//! This crate contains data structures and constants that are used by both the client and the server. pub mod generator; pub mod save;