diff --git a/lib/gears/matrix.lua b/lib/gears/matrix.lua index 3b113188..20105b7c 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