diff options
author | 2023-09-19 13:26:52 +0200 | |
---|---|---|
committer | 2023-09-19 13:26:52 +0200 | |
commit | 2ee2c658944b20a045a4b81209664930623300c9 (patch) | |
tree | 07488b306ce8daa661517713176f631832b42ad4 /runtime | |
parent | 582da10ae2465a7a65ea062347b8f14fba8e6064 (diff) | |
parent | c6554d990770b941b5003d6ef40af3f9dedcd052 (diff) | |
download | iced-2ee2c658944b20a045a4b81209664930623300c9.tar.gz iced-2ee2c658944b20a045a4b81209664930623300c9.tar.bz2 iced-2ee2c658944b20a045a4b81209664930623300c9.zip |
Merge pull request #2091 from nyurik/docs
Chore: Apply clippy docs keyword quoting
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/src/window/screenshot.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/src/window/screenshot.rs b/runtime/src/window/screenshot.rs index c84286b6..21e04718 100644 --- a/runtime/src/window/screenshot.rs +++ b/runtime/src/window/screenshot.rs @@ -6,7 +6,7 @@ use std::sync::Arc; /// Data of a screenshot, captured with `window::screenshot()`. /// -/// The `bytes` of this screenshot will always be ordered as `RGBA` in the sRGB color space. +/// The `bytes` of this screenshot will always be ordered as `RGBA` in the `sRGB` color space. #[derive(Clone)] pub struct Screenshot { /// The bytes of the [`Screenshot`]. |