From 42971ec0e13293d73691c29a7c8d9240aa085bdf Mon Sep 17 00:00:00 2001 From: zancas Date: Sun, 28 Jul 2024 08:58:01 -0600 Subject: [PATCH 1/2] abstarction --> abstraction --- plotters/src/coord/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotters/src/coord/mod.rs b/plotters/src/coord/mod.rs index 574929d4..b01fc697 100644 --- a/plotters/src/coord/mod.rs +++ b/plotters/src/coord/mod.rs @@ -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 From 0ab144831d83f1a361e7ee2ccadeaa8a2b75c11b Mon Sep 17 00:00:00 2001 From: zancas Date: Sun, 28 Jul 2024 09:43:50 -0600 Subject: [PATCH 2/2] rm incorrect 's' --- plotters/src/coord/ranged2d/cartesian.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotters/src/coord/ranged2d/cartesian.rs b/plotters/src/coord/ranged2d/cartesian.rs index f431e539..57d2240f 100644 --- a/plotters/src/coord/ranged2d/cartesian.rs +++ b/plotters/src/coord/ranged2d/cartesian.rs @@ -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};