Skip to content

Commit

Permalink
Fix Param usage in the Plot and Renderers guide (#6001)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt authored Nov 29, 2023
1 parent 0b84376 commit 7a4fc21
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/user_guide/Plots_and_Renderers.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@
"metadata": {},
"outputs": [],
"source": [
"print(curve_plot.state)\n",
"print(type(curve_plot.state), curve_plot.state)\n",
"curve_plot.state"
]
},
Expand Down Expand Up @@ -300,7 +300,7 @@
"metadata": {},
"source": [
"<div class=\"alert alert-success\">\n",
"Tip: To find more information about any HoloViews object use ``hv.help`` to print a detailed docstring.\n",
"Tip: To find more information about any HoloViews object use <code>hv.help</code> to print a detailed docstring.\n",
"</div>\n",
"\n",
"The valid figure display formats can be seen in the docstring of the Renderer or directly on the parameter:"
Expand All @@ -312,7 +312,7 @@
"metadata": {},
"outputs": [],
"source": [
"renderer.params('fig').objects"
"renderer.param['fig'].objects"
]
},
{
Expand Down Expand Up @@ -703,5 +703,5 @@
}
},
"nbformat": 4,
"nbformat_minor": 1
"nbformat_minor": 4
}

0 comments on commit 7a4fc21

Please sign in to comment.