From f84e7a019663f87b51f2064b874e3e8b0f9a5677 Mon Sep 17 00:00:00 2001 From: Thore Goebel <33295590+thgoebel@users.noreply.github.com> Date: Wed, 16 Sep 2020 16:57:44 +0200 Subject: [PATCH] Fix x-axis direction in Offset.direction doc (#21208) Specify that the positive x direction is right, as opposed to left. --- lib/ui/geometry.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/geometry.dart b/lib/ui/geometry.dart index 23829b3ef..6d3b1ac5b 100644 --- a/lib/ui/geometry.dart +++ b/lib/ui/geometry.dart @@ -155,7 +155,7 @@ class Offset extends OffsetBase { /// The angle of this offset as radians clockwise from the positive x-axis, in /// the range -[pi] to [pi], assuming positive values of the x-axis go to the - /// left and positive values of the y-axis go down. + /// right and positive values of the y-axis go down. /// /// Zero means that [dy] is zero and [dx] is zero or positive. /// -- GitLab