Skip to content

Commit

Permalink
[ fix ] path lines
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-hoeck committed Jul 2, 2024
1 parent b0590cb commit 33a0e29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Text/SVG/Types.idr
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ digit True = "1"
export
Interpolation PathCmd where
interpolate (Move rel x y) = letter rel "M" "m" ++ "\{x} \{y}"
interpolate (Line rel x y) = letter rel "M" "m" ++ "\{x} \{y}"
interpolate (Line rel x y) = letter rel "L" "l" ++ "\{x} \{y}"
interpolate (Horiz rel x) = letter rel "H" "h" ++ "\{x}"
interpolate (Vert rel y) = letter rel "V" "v" ++ "\{y}"
interpolate Z = "Z"
Expand Down

0 comments on commit 33a0e29

Please sign in to comment.