summaryrefslogtreecommitdiffstats
path: root/examples/the_matrix/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/the_matrix/src/main.rs')
-rw-r--r--examples/the_matrix/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/the_matrix/src/main.rs b/examples/the_matrix/src/main.rs
index f3a67ac8..2ae1cc3a 100644
--- a/examples/the_matrix/src/main.rs
+++ b/examples/the_matrix/src/main.rs
@@ -11,7 +11,7 @@ use std::cell::RefCell;
pub fn main() -> iced::Result {
tracing_subscriber::fmt::init();
- iced::program("The Matrix - Iced", TheMatrix::update, TheMatrix::view)
+ iced::application("The Matrix - Iced", TheMatrix::update, TheMatrix::view)
.subscription(TheMatrix::subscription)
.antialiasing(true)
.run()