Skip to content

Commit

Permalink
Remove trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
wch committed Aug 9, 2024
1 parent e3c4d78 commit 77dc624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/ui-overview.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ For a quick example, here's how to arrange two sliders in a row:
from shiny.express import ui
with ui.layout_column_wrap(gap="2rem"):
ui.input_slider("slider1", "Slider 1", min=0, max=100, value=50),
ui.input_slider("slider1", "Slider 1", min=0, max=100, value=50)
ui.input_slider("slider2", "Slider 2", min=0, max=100, value=50)
```

Expand Down

0 comments on commit 77dc624

Please sign in to comment.