@@ -46,7 +46,7 @@ plotters = "$LATEST_VERSION"
46
46
And the following code draws a quadratic function. ` src/main.rs ` ,
47
47
48
48
``` rust
49
- $ $ examples / quick_start . rs$$
49
+ $$ .. / examples / quick_start . rs$$
50
50
```
51
51
52
52
![ ] ( https://plotters-rs.github.io/plotters-doc-data/0.png )
@@ -158,7 +158,7 @@ But Plotter is aimed to be a platform that is fully extendable to support any ot
158
158
Plotters can use different drawing back-ends, including SVG, BitMap, and even real-time rendering. For example, a bitmap drawing backend.
159
159
160
160
``` rust
161
- $ $ examples / drawing_backends . rs$$
161
+ $$ .. / examples / drawing_backends . rs$$
162
162
```
163
163
164
164
![ ] ( https://plotters-rs.github.io/plotters-doc-data/1.png )
@@ -171,7 +171,7 @@ This is done by creating sub-drawing-areas.
171
171
Besides that, the drawing area also allows the customized coordinate system, by doing so, the coordinate mapping is done by the drawing area automatically.
172
172
173
173
``` rust
174
- $ $ examples / drawing_area . rs$$
174
+ $$ .. / examples / drawing_area . rs$$
175
175
```
176
176
177
177
![ ] ( https://plotters-rs.github.io/plotters-doc-data/2.png )
@@ -187,7 +187,7 @@ You may also combine existing elements to build a complex element.
187
187
To learn more about the element system, please read the [ element module documentation] ( ./element/index.html ) .
188
188
189
189
``` rust
190
- $ $ examples / elements . rs$$
190
+ $$ .. / examples / elements . rs$$
191
191
```
192
192
193
193
![ ] ( https://plotters-rs.github.io/plotters-doc-data/3.png )
@@ -201,7 +201,7 @@ coordinate which has the upper-left corner defined as `(0,0)` is used for furthe
201
201
For example, we can have an element which includes a dot and its coordinate.
202
202
203
203
``` rust
204
- $ $ examples / composable_elements . rs$$
204
+ $$ .. / examples / composable_elements . rs$$
205
205
```
206
206
207
207
![ ] ( https://plotters-rs.github.io/plotters-doc-data/4.png )
@@ -214,7 +214,7 @@ For example, you can define the label areas, meshes, and put a data series onto
214
214
of the chart context object.
215
215
216
216
``` rust
217
- $ $ examples / chart . rs$$
217
+ $$ .. / examples / chart . rs$$
218
218
```
219
219
220
220
![ ] ( https://plotters-rs.github.io/plotters-doc-data/5.png )
@@ -274,7 +274,7 @@ The following list is a complete list of features that can be opt in and out.
274
274
275
275
| Name | Description | Additional Dependency | Default?|
276
276
| ---------| --------------| --------| ------------|
277
- | datetime | Eanble the date and time coordinate support | chrono | Yes |
277
+ | datetime | Enable the date and time coordinate support | chrono | Yes |
278
278
279
279
- Element, series and util functions
280
280
@@ -322,7 +322,7 @@ The following list is a complete list of features that can be opt in and out.
322
322
323
323
* How to check if a backend writes file successfully ?
324
324
325
- The behavior of Plotters backend is consistent with stadnard library.
325
+ The behavior of Plotters backend is consistent with standard library.
326
326
When the backend instance is being dropped, `DrawingArea::present` or `Backend::present` is called automatically
327
327
whenever is needed. When the `persent` method is called from `drop`, any error will be sliently ignored.
328
328
0 commit comments