aboutsummaryrefslogtreecommitdiff
path: root/examples/07-routing/src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/07-routing/src')
-rw-r--r--examples/07-routing/src/app.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/07-routing/src/app.gleam b/examples/07-routing/src/app.gleam
index e82f895..fbdc786 100644
--- a/examples/07-routing/src/app.gleam
+++ b/examples/07-routing/src/app.gleam
@@ -44,7 +44,7 @@ type Guest {
Guest(slug: String, name: String)
}
-fn init(_) -> #(Model, Effect(Msg)) {
+fn init(_flags) -> #(Model, Effect(Msg)) {
#(
Model(
current_route: Home,