Skip to content

Commit 95b6a4b

Browse files
MorboMorbo
authored andcommitted
fix reviewed
1 parent 5201c1e commit 95b6a4b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/shared/backend/client_messages.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ impl ClientMessages {
4343
/// Returns an iterator over received messages from the server on a channel without consuming them.
4444
///
4545
/// Unlike [`Self::receive`], the messages stay in the resource. Intended for tools
46-
/// that need to observe inbound traffic (e.g. debug overlays or client-side replay
47-
/// recording) alongside Replicon's normal consumption.
46+
/// that need to observe inbound traffic (such as client-side replay
47+
/// recording) before Replicon consumes them.
4848
pub fn iter_received<I: Into<usize>>(
4949
&self,
5050
channel_id: I,

src/shared/backend/server_messages.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ impl ServerMessages {
4040
/// Returns an iterator over received messages from clients on a channel without consuming them.
4141
///
4242
/// Unlike [`Self::receive`], the messages stay in the resource. Intended for tools
43-
/// that need to observe inbound traffic (e.g. debug overlays or replay recording)
44-
/// alongside Replicon's normal consumption.
43+
/// that need to observe inbound traffic (such as replay recording)
44+
/// before Replicon consumes them.
4545
pub fn iter_received<I: Into<usize>>(
4646
&self,
4747
channel_id: I,

0 commit comments

Comments
 (0)