From ee2575794e91b9457a74a95daf1dcc707058cd58 Mon Sep 17 00:00:00 2001 From: mat Date: Sun, 12 Oct 2025 23:01:54 +0300 Subject: upgrade deps and clean up lots of doc comments --- azalea/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'azalea/README.md') diff --git a/azalea/README.md b/azalea/README.md index 5d0b6d5f..7860741a 100644 --- a/azalea/README.md +++ b/azalea/README.md @@ -57,9 +57,11 @@ async fn main() { #[derive(Default, Clone, Component)] pub struct State { /// An example field that stores the number of messages that've been - /// received by the client so far. The state gets cloned whenever the - /// handler is called, so to have all the clones point to the same data and - /// have it be mutable, we use an Arc>. + /// received by the client so far. + /// + /// The state gets cloned whenever the handler is called, so to have all + /// the clones point to the same data and have it be mutable, we use an + /// Arc>. pub messages_received: Arc> } -- cgit v1.2.3