Skip to content

Commit f894eb3

Browse files
MorboMorbo
authored andcommitted
fix ci
1 parent 95b6a4b commit f894eb3

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/shared/backend/client_messages.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ impl ClientMessages {
4242

4343
/// Returns an iterator over received messages from the server on a channel without consuming them.
4444
///
45-
/// Unlike [`Self::receive`], the messages stay in the resource. Intended for tools
46-
/// that need to observe inbound traffic (such as client-side replay
47-
/// recording) before Replicon consumes them.
45+
/// The messages stay in the resource. Intended for tools that need to
46+
/// observe inbound traffic (such as client-side replay recording) before
47+
/// 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ impl ServerMessages {
3939

4040
/// Returns an iterator over received messages from clients on a channel without consuming them.
4141
///
42-
/// Unlike [`Self::receive`], the messages stay in the resource. Intended for tools
43-
/// that need to observe inbound traffic (such as replay recording)
44-
/// before Replicon consumes them.
42+
/// The messages stay in the resource. Intended for tools that need to
43+
/// observe inbound traffic (such as replay recording) before Replicon
44+
/// consumes them.
4545
pub fn iter_received<I: Into<usize>>(
4646
&self,
4747
channel_id: I,

0 commit comments

Comments
 (0)