summaryrefslogtreecommitdiffstats
path: root/examples/ferris/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ferris/src/main.rs')
-rw-r--r--examples/ferris/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ferris/src/main.rs b/examples/ferris/src/main.rs
index 0400c376..88006898 100644
--- a/examples/ferris/src/main.rs
+++ b/examples/ferris/src/main.rs
@@ -9,7 +9,7 @@ use iced::{
};
pub fn main() -> iced::Result {
- iced::program("Ferris - Iced", Image::update, Image::view)
+ iced::application("Ferris - Iced", Image::update, Image::view)
.subscription(Image::subscription)
.theme(|_| Theme::TokyoNight)
.run()