diff options
author | 2024-07-16 16:12:23 +0200 | |
---|---|---|
committer | 2024-07-16 16:12:41 +0200 | |
commit | 964182e4b8c8e4e4f1afed67d371d642496fce83 (patch) | |
tree | 68e37222e1c0df55127d3a3d52c16e9ff92b9222 /src/lib.rs | |
parent | eb6673bf0022d09f86d0ba0b8c3313abb95eeb9c (diff) | |
download | iced-964182e4b8c8e4e4f1afed67d371d642496fce83.tar.gz iced-964182e4b8c8e4e4f1afed67d371d642496fce83.tar.bz2 iced-964182e4b8c8e4e4f1afed67d371d642496fce83.zip |
Fix grammar in "Passive Subscriptions" docs
Diffstat (limited to '')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -359,7 +359,7 @@ //! ``` //! //! A [`Subscription`] is [a _declarative_ builder of streams](Subscription#the-lifetime-of-a-subscription) -//! that are not allowed to end on its own. Only the `subscription` function +//! that are not allowed to end on their own. Only the `subscription` function //! dictates the active subscriptions—just like `view` fully dictates the //! visible widgets of your user interface, at every moment. //! |