Skip to content

Fixed typos in README.md. That's it. #269

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ The following list is a complete list of features that can be opt in and out.

| Name | Description | Additional Dependency |Default?|
|---------|--------------|--------|------------|
| datetime | Eanble the date and time coordinate support | chrono | Yes |
| datetime | Enable the date and time coordinate support | chrono | Yes |

- Element, series and util functions

Expand Down Expand Up @@ -569,7 +569,7 @@ The following list is a complete list of features that can be opt in and out.

* How to check if a backend writes file successfully ?

The behavior of Plotters backend is consistent with stadnard library.
The behavior of Plotters backend is consistent with standard library.
When the backend instance is being dropped, `DrawingArea::present` or `Backend::present` is called automatically
whenever is needed. When the `persent` method is called from `drop`, any error will be sliently ignored.

Expand Down
16 changes: 8 additions & 8 deletions doc-template/readme.template.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ plotters = "$LATEST_VERSION"
And the following code draws a quadratic function. `src/main.rs`,

```rust
$$examples/quick_start.rs$$
$$../examples/quick_start.rs$$
```

![](https://plotters-rs.github.io/plotters-doc-data/0.png)
Expand Down Expand Up @@ -158,7 +158,7 @@ But Plotter is aimed to be a platform that is fully extendable to support any ot
Plotters can use different drawing back-ends, including SVG, BitMap, and even real-time rendering. For example, a bitmap drawing backend.

```rust
$$examples/drawing_backends.rs$$
$$../examples/drawing_backends.rs$$
```

![](https://plotters-rs.github.io/plotters-doc-data/1.png)
Expand All @@ -171,7 +171,7 @@ This is done by creating sub-drawing-areas.
Besides that, the drawing area also allows the customized coordinate system, by doing so, the coordinate mapping is done by the drawing area automatically.

```rust
$$examples/drawing_area.rs$$
$$../examples/drawing_area.rs$$
```

![](https://plotters-rs.github.io/plotters-doc-data/2.png)
Expand All @@ -187,7 +187,7 @@ You may also combine existing elements to build a complex element.
To learn more about the element system, please read the [element module documentation](./element/index.html).

```rust
$$examples/elements.rs$$
$$../examples/elements.rs$$
```

![](https://plotters-rs.github.io/plotters-doc-data/3.png)
Expand All @@ -201,7 +201,7 @@ coordinate which has the upper-left corner defined as `(0,0)` is used for furthe
For example, we can have an element which includes a dot and its coordinate.

```rust
$$examples/composable_elements.rs$$
$$../examples/composable_elements.rs$$
```

![](https://plotters-rs.github.io/plotters-doc-data/4.png)
Expand All @@ -214,7 +214,7 @@ For example, you can define the label areas, meshes, and put a data series onto
of the chart context object.

```rust
$$examples/chart.rs$$
$$../examples/chart.rs$$
```

![](https://plotters-rs.github.io/plotters-doc-data/5.png)
Expand Down Expand Up @@ -274,7 +274,7 @@ The following list is a complete list of features that can be opt in and out.

| Name | Description | Additional Dependency |Default?|
|---------|--------------|--------|------------|
| datetime | Eanble the date and time coordinate support | chrono | Yes |
| datetime | Enable the date and time coordinate support | chrono | Yes |

- Element, series and util functions

Expand Down Expand Up @@ -322,7 +322,7 @@ The following list is a complete list of features that can be opt in and out.

* How to check if a backend writes file successfully ?

The behavior of Plotters backend is consistent with stadnard library.
The behavior of Plotters backend is consistent with standard library.
When the backend instance is being dropped, `DrawingArea::present` or `Backend::present` is called automatically
whenever is needed. When the `persent` method is called from `drop`, any error will be sliently ignored.

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ The following list is a complete list of features that can be opt in and out.

| Name | Description | Additional Dependency |Default?|
|---------|--------------|--------|------------|
| datetime | Eanble the date and time coordinate support | chrono | Yes |
| datetime | Enable the date and time coordinate support | chrono | Yes |

- Element, series and util functions

Expand Down Expand Up @@ -708,7 +708,7 @@ The following list is a complete list of features that can be opt in and out.

* How to check if a backend writes file successfully ?

The behavior of Plotters backend is consistent with stadnard library.
The behavior of Plotters backend is consistent with standard library.
When the backend instance is being dropped, `DrawingArea::present` or `Backend::present` is called automatically
whenever is needed. When the `persent` method is called from `drop`, any error will be sliently ignored.

Expand Down