diff options
author | 2025-01-16 11:18:15 +0000 | |
---|---|---|
committer | 2025-01-16 11:21:11 +0000 | |
commit | 61d4423015deb8ec474b0efa7ba71c410b928d7f (patch) | |
tree | 4b891574509dc66c675a82bfec3605f0a40b0383 /runtime | |
parent | e3f149d9323742183e239e0958bc0d85212acf0f (diff) | |
download | iced-61d4423015deb8ec474b0efa7ba71c410b928d7f.tar.gz iced-61d4423015deb8ec474b0efa7ba71c410b928d7f.tar.bz2 iced-61d4423015deb8ec474b0efa7ba71c410b928d7f.zip |
Use simple quote in `runtime::window` docs
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/src/window.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/src/window.rs b/runtime/src/window.rs index 64395993..183fab97 100644 --- a/runtime/src/window.rs +++ b/runtime/src/window.rs @@ -32,14 +32,14 @@ pub enum Action { /// Move the window with the left mouse button until the button is /// released. /// - /// There’s no guarantee that this will work unless the left mouse + /// There's no guarantee that this will work unless the left mouse /// button was pressed immediately before this function is called. Drag(Id), /// Resize the window with the left mouse button until the button is /// released. /// - /// There’s no guarantee that this will work unless the left mouse + /// There's no guarantee that this will work unless the left mouse /// button was pressed immediately before this function is called. DragResize(Id, Direction), |