summaryrefslogtreecommitdiffstats
path: root/futures/src/subscription.rs
diff options
context:
space:
mode:
authorLibravatar Yuri Astrakhan <YuriAstrakhan@gmail.com>2023-09-19 01:50:05 -0400
committerLibravatar Yuri Astrakhan <YuriAstrakhan@gmail.com>2023-09-19 01:50:05 -0400
commitc6554d990770b941b5003d6ef40af3f9dedcd052 (patch)
tree320357161634eeafcc4a33d7c41aa1e39f1ee93e /futures/src/subscription.rs
parent4613eb26cba3ded83f25ebdefd01c983c79a9d59 (diff)
downloadiced-c6554d990770b941b5003d6ef40af3f9dedcd052.tar.gz
iced-c6554d990770b941b5003d6ef40af3f9dedcd052.tar.bz2
iced-c6554d990770b941b5003d6ef40af3f9dedcd052.zip
Chore: Apply clippy docs keyword quoting
Add quotes a number of doc strings like `sRGB`
Diffstat (limited to '')
-rw-r--r--futures/src/subscription.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/futures/src/subscription.rs b/futures/src/subscription.rs
index d40125e3..7163248d 100644
--- a/futures/src/subscription.rs
+++ b/futures/src/subscription.rs
@@ -25,7 +25,7 @@ pub type EventStream = BoxStream<(Event, event::Status)>;
/// A [`Subscription`] is normally provided to some runtime, like a `Command`,
/// and it will generate events as long as the user keeps requesting it.
///
-/// For instance, you can use a [`Subscription`] to listen to a WebSocket
+/// For instance, you can use a [`Subscription`] to listen to a `WebSocket`
/// connection, keyboard presses, mouse events, time ticks, etc.
#[must_use = "`Subscription` must be returned to runtime to take effect"]
pub struct Subscription<Message> {
@@ -355,7 +355,7 @@ where
/// }
/// ```
///
-/// Check out the [`websocket`] example, which showcases this pattern to maintain a WebSocket
+/// Check out the [`websocket`] example, which showcases this pattern to maintain a `WebSocket`
/// connection open.
///
/// [`websocket`]: https://github.com/iced-rs/iced/tree/0.10/examples/websocket