From c2cb1a0c81ba18dced3fcb3d181e4b701ee7ea94 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 2 Apr 2020 02:20:14 +0200 Subject: Improve `Point::ORIGIN` documentation --- core/src/point.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src') diff --git a/core/src/point.rs b/core/src/point.rs index 43ee2143..2b5ad154 100644 --- a/core/src/point.rs +++ b/core/src/point.rs @@ -11,7 +11,7 @@ pub struct Point { } impl Point { - /// The origin (i.e. a [`Point`] with both X=0 and Y=0). + /// The origin (i.e. a [`Point`] at (0, 0)). /// /// [`Point`]: struct.Point.html pub const ORIGIN: Point = Point::new(0.0, 0.0); -- cgit