Skip to content

Commit

Permalink
Update Widget List.ipynb
Browse files Browse the repository at this point in the history
Example for FloatLogSlider labeled min and max in reverse order; changed it so it is correct.
  • Loading branch information
liamb27 committed Apr 1, 2024
1 parent b78de43 commit 2e15cfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/examples/Widget List.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@
"widgets.FloatLogSlider(\n",
" value=10,\n",
" base=10,\n",
" min=-10, # max exponent of base\n",
" max=10, # min exponent of base\n",
" min=-10, # min exponent of base\n",
" max=10, # max exponent of base\n",
" step=0.2, # exponent step\n",
" description='Log Slider'\n",
")"
Expand Down

0 comments on commit 2e15cfc

Please sign in to comment.