Skip to content
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

doc-comment grammar fixups #621

Merged
merged 2 commits into from
Aug 5, 2024
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
2 changes: 1 addition & 1 deletion plotters/src/coord/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!

One of the key features of Plotters is flexible coordinate system abstraction and this module
provides all the abstraction used for the coordinate abstarction of Plotters.
provides all the abstraction used for the coordinate abstraction of Plotters.

Generally speaking, the coordinate system in Plotters is responsible for mapping logic data points into
pixel based backend coordinate. This task is abstracted by a simple trait called
Expand Down
2 changes: 1 addition & 1 deletion plotters/src/coord/ranged2d/cartesian.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
This module provides the 2D cartesian coordinate system, which is composed by two independent
ranged 1D coordinate specification.

This types of coordinate system is used by the chart constructed with [ChartBuilder::build_cartesian_2d](../../chart/ChartBuilder.html#method.build_cartesian_2d).
This type of coordinate system is used by the chart constructed with [ChartBuilder::build_cartesian_2d](../../chart/ChartBuilder.html#method.build_cartesian_2d).
*/

use crate::coord::ranged1d::{KeyPointHint, Ranged, ReversibleRanged};
Expand Down
Loading