From 2e827202ecbe436e80e347aede0371800adffe1a Mon Sep 17 00:00:00 2001 From: Emmanuel Lepage Vallee Date: Fri, 22 Jul 2016 21:55:23 -0400 Subject: [PATCH] doc: Fix a matrix copy paste mistake --- lib/gears/matrix.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gears/matrix.lua b/lib/gears/matrix.lua index 3b1131884..20105b7cf 100644 --- a/lib/gears/matrix.lua +++ b/lib/gears/matrix.lua @@ -152,7 +152,7 @@ end -- @tparam number x The x coordinate of the point. -- @tparam number y The y coordinate of the point. -- @treturn number The x coordinate of the transformed point. --- @treturn number The x coordinate of the transformed point. +-- @treturn number The y coordinate of the transformed point. function matrix:transform_point(x, y) x, y = self:transform_distance(x, y) return self.x0 + x, self.y0 + y