diff --git a/doc/tutorials.md b/doc/tutorials.md index af813f6..0d1cb68 100644 --- a/doc/tutorials.md +++ b/doc/tutorials.md @@ -32,16 +32,16 @@ manager is defined from the html `` tag, so each of this elements. The second instruction do a lot of things at once. First, the method -[`add_canvas`](references.md#Manager.add_canvas) add, like this name +[`add_canvas`](references.md#Manager-add_canvas) add, like this name indicate, a [Canvas](references.md#Canvas) with a specific width and height associated to the [Manager](references.md#Manager) we created -before. Next, the method [`add_axes`](references.md#Figure.add_axes) of -the [figure](references.md#Canvas.figure) property of the canvas we +before. Next, the method [`add_axes`](references.md#Figure-add_axes) of +the [figure](references.md#Canvas-figure) property of the canvas we created add an [Axes](references.md#Axes) to this figure. Then, the -[`plot`](references.md#Axes.plot) method take the first list of number +[`plot`](references.md#Axes-plot) method take the first list of number as the x coordinate of points, the second as y ones and finally, an optional dictionary which define the style of the plot composed of each point. -Finally the [`draw`](references.md#Manager.draw) method render the plot +Finally the [`draw`](references.md#Manager-draw) method render the plot we created to display it on the created canvas in the web page.