-
-
Notifications
You must be signed in to change notification settings - Fork 702
Closed
Description
About halfway through the documentation of interact, there is this example:
sage: @interact
... def _(title=["A Plot Demo", "Something silly", "something tricky" , a=input_box(sin(x*sin(x*sin(x))), 'function'),
... clr = Color('red'), thickness=[1..30], zoom=(1,0.95,..,0.1), plot_points=(200..2000)):
... html('<h1 align=center>%s</h1>'%title)
... print plot_points
... show(plot(a, -zoom*pi,zoom*pi, color=clr, thickness=thickness, plot_points=plot_points))
<html>...
There should be a ] after the " after the word tricky.
Component: interact
Issue created by migration from https://trac.sagemath.org/ticket/5055