Skip to content

Commit 449f895

Browse files
authored
Merge pull request #3714 from djp52/patch-1
fixed typo in docs
2 parents 511663a + ace86f1 commit 449f895

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ The new Stack container widget shows only the selected child widget, while other
9191
from ipywidgets import Stack, Button, IntSlider, Dropdown, VBox, link
9292
s = Stack([Button(description='Click here'), IntSlider()], selected_index=0)
9393
d = Dropdown(options=['button', 'slider'])
94-
link((dropdown, 'index'), (stacked, 'selected_index'))
94+
link((d, 'index'), (s, 'selected_index'))
9595
VBox([d, s])
9696
```
9797

0 commit comments

Comments
 (0)