Skip to content

Commit fc2cb83

Browse files
committed
fix doc for driver options
1 parent edeff48 commit fc2cb83

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

guides/getting_started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ configurations should live in your app's config.exs file.
6262
default_scene: MyApp.Scene.Example,
6363
drivers: [
6464
[
65-
module: Scenic.Driver.Glfw,
66-
name: :glfw,
67-
opts: [resizeable: false, title: "Example Application"],
65+
module: Scenic.Driver.Local,
66+
name: :local,
67+
window: [resizeable: false, title: "Example Application"],
6868
]
6969
]
7070
]

guides/overview_scene.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ configuration of a ViewPort from the config.exs file...
113113
[
114114
module: Scenic.Driver.Local,
115115
name: :local,
116-
opts: [resizeable: false, title: "Example Application"],
116+
window: [resizeable: false, title: "Example Application"],
117117
]
118118
]
119119
]

0 commit comments

Comments
 (0)