diff options
author | 2023-09-19 01:50:05 -0400 | |
---|---|---|
committer | 2023-09-19 01:50:05 -0400 | |
commit | c6554d990770b941b5003d6ef40af3f9dedcd052 (patch) | |
tree | 320357161634eeafcc4a33d7c41aa1e39f1ee93e /graphics/src/compositor.rs | |
parent | 4613eb26cba3ded83f25ebdefd01c983c79a9d59 (diff) | |
download | iced-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 'graphics/src/compositor.rs')
-rw-r--r-- | graphics/src/compositor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/src/compositor.rs b/graphics/src/compositor.rs index 7173ffa7..0222a80f 100644 --- a/graphics/src/compositor.rs +++ b/graphics/src/compositor.rs @@ -61,7 +61,7 @@ pub trait Compositor: Sized { ) -> Result<(), SurfaceError>; /// Screenshots the current [`Renderer`] primitives to an offscreen texture, and returns the bytes of - /// the texture ordered as `RGBA` in the sRGB color space. + /// the texture ordered as `RGBA` in the `sRGB` color space. /// /// [`Renderer`]: Self::Renderer fn screenshot<T: AsRef<str>>( |