@@ -412,7 +412,7 @@ const fixed = Widget.Fixed({
412
412
413
413
### FlowBox
414
414
415
- subclass of [ Gtk.FlowBox] ( https://gjs-docs.gnome.org/gtk30~3.0/gtk.FlowBox )
415
+ subclass of [ Gtk.FlowBox] ( https://gjs-docs.gnome.org/gtk30~3.0/gtk.flowbox )
416
416
417
417
::: note
418
418
` Gtk.FlowBox ` is not yet subclassed to be declarative and doesn't have
@@ -522,7 +522,7 @@ const discrete = Widget.LevelBar({
522
522
523
523
### ListBox
524
524
525
- subclass of [ Gtk.ListBox] ( https://gjs-docs.gnome.org/gtk30~3.0/gtk.ListBox )
525
+ subclass of [ Gtk.ListBox] ( https://gjs-docs.gnome.org/gtk30~3.0/gtk.listbox )
526
526
527
527
::: note
528
528
` Gtk.ListBox ` is not yet subclassed to be declarative and doesn't have
@@ -672,7 +672,7 @@ subclass of [Gtk.ScrolledWindow](https://gjs-docs.gnome.org/gtk30~3.0/gtk.scroll
672
672
const scrollable = Widget .Scrollable ({
673
673
hscroll: ' always' ,
674
674
vscroll: ' never' ,
675
- style : ' min-width: 20px;' ,
675
+ css : ' min-width: 20px;' ,
676
676
child: Widget .Label (' Lorem ipsum dolor sit amet, ' +
677
677
' officia excepteur ex fugiat reprehenderit enim ' +
678
678
' labore culpa sint ad nisi Lorem pariatur mollit' ),
@@ -730,12 +730,12 @@ subclass of [Gtk.SpinButton](https://gjs-docs.gnome.org/gtk30~3.0/gtk.spinbutton
730
730
| ----------| ------|
731
731
| on-value-changed | ` () => void ` |
732
732
| range | ` [min: number, max: number] ` |
733
- | incements | ` [step: number, page: number] ` |
733
+ | increments | ` [step: number, page: number] ` |
734
734
735
735
``` js
736
736
const spinbutton = Widget .SpinButton ({
737
737
range: [0 , 100 ],
738
- incements : [1 , 5 ],
738
+ increments : [1 , 5 ],
739
739
onValueChanged : ({ value }) => {
740
740
print (value)
741
741
},
0 commit comments