diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Painting/BorderPainting.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/Painting/BorderPainting.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Painting/BorderPainting.cpp b/Userland/Libraries/LibWeb/Painting/BorderPainting.cpp index 3bcfeb3963..a8781071aa 100644 --- a/Userland/Libraries/LibWeb/Painting/BorderPainting.cpp +++ b/Userland/Libraries/LibWeb/Painting/BorderPainting.cpp @@ -209,7 +209,7 @@ void paint_all_borders(PaintContext& context, Gfx::FloatRect const& bordered_rec Painting::paint_border(context, Painting::BorderEdge::Bottom, bottom_border_rect, border_radius_data, borders_data); Painting::paint_border(context, Painting::BorderEdge::Left, left_border_rect, border_radius_data, borders_data); - // Draws a quarter cirle clockwise + // Draws a quarter circle clockwise auto draw_quarter_circle = [&](Gfx::FloatPoint const& from, Gfx::FloatPoint const& to, Gfx::Color color, int thickness) { Gfx::FloatPoint center = { 0, 0 }; Gfx::FloatPoint offset = { 0, 0 }; |