summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-09 06:40:48 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-09 06:40:48 +0100
commit17395e83201d1e5e00be46c1fb1d6fa18f3d87f1 (patch)
tree15950318f4e9969ee953fcc3eab9eac205722ed1
parentf3ae4266e9727940ba0d0e8469362923590916f4 (diff)
downloadiced-17395e83201d1e5e00be46c1fb1d6fa18f3d87f1.tar.gz
iced-17395e83201d1e5e00be46c1fb1d6fa18f3d87f1.tar.bz2
iced-17395e83201d1e5e00be46c1fb1d6fa18f3d87f1.zip
Use `to_owned` instead of `to_string` in `gallery` example
-rw-r--r--examples/gallery/src/civitai.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gallery/src/civitai.rs b/examples/gallery/src/civitai.rs
index 457091e9..8e57db3d 100644
--- a/examples/gallery/src/civitai.rs
+++ b/examples/gallery/src/civitai.rs
@@ -71,7 +71,7 @@ impl Image {
if part.starts_with("width=") {
format!("width={width}")
} else {
- part.to_string()
+ part.to_owned()
}
})
.collect::<Vec<_>>()