From: Matthew Fernandez <matthew.fernandez@gmail.com> Date: Wed, 12 Oct 2022 03:59:30 +0000 (-0700) Subject: common miter_point: fix comment typo X-Git-Tag: 7.0.0~14^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c0e8db9d997a7533efb959b4fd6455c093baae3a;p=graphviz common miter_point: fix comment typo --- diff --git a/lib/common/arrows.c b/lib/common/arrows.c index 07e1cb89d..00cc94d42 100644 --- a/lib/common/arrows.c +++ b/lib/common/arrows.c @@ -472,7 +472,7 @@ static pointf miter_point(pointf base_left, pointf P, pointf base_right, P.y - penwidth / 2.0 * cosBetaMinusPi}; // the bevel is the triangle formed from the three points P, P1 and P2 so - // a good anough approximation of the miter point in this case is the + // a good enough approximation of the miter point in this case is the // crossing of P-P3 with P1-P2 which is the same as the midpoint between // P1 and P2 const pointf Pbevel = {(P1.x + P2.x) / 2, (P1.y + P2.y) / 2};