Skip to content

Commit

Permalink
fix typo in the docstring and an explanation for `interactive.panel()…
Browse files Browse the repository at this point in the history
…` and `interactive.widgets()` (#1186)
  • Loading branch information
iuryt authored Nov 14, 2023
1 parent 40da24e commit 6f2a47f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/user_guide/Interactive.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"If you want more control over the layout, you can use any of the features from [Panel](https://panel.holoviz.org):"
"If you want more control over the layout, you can use any of the features from [Panel](https://panel.holoviz.org). In this case, `interactive.panel()` (or `interactive.output()`) make sure you display the interactive plot only, with the widgets explicitly declared by `interactive.widgets()`:"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion hvplot/interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def __call__(self, *args, **kwargs):
Examples
--------
>>> widget = panel.wid7ugets.IntSlider(value=1, start=1, end=5)
>>> widget = panel.widgets.IntSlider(value=1, start=1, end=5)
>>> dfi = df.interactive(width=200)
>>> dfi.head(widget)
"""
Expand Down

0 comments on commit 6f2a47f

Please sign in to comment.