Skip to content

Commit 33fa943

Browse files
committed
fix formatting
1 parent f19ed44 commit 33fa943

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Graphics.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ See also: [`rel_line_to`](@ref).
723723
@mustimplement line_to(gc::GraphicsContext, ::Real, ::Real)
724724

725725
"""
726-
curve_to(gc::GraphicsContext, c1x, c1y, c2x, c2y, x, y)
726+
curve_to(gc::GraphicsContext, c1x, c1y, c2x, c2y, x, y)
727727
728728
Add a cubic bezier curve to the path. The control points will be the current point, `(c1x, c1y)`, `(c2x, c2y)` and `(x, y)`. The current point will be moved to `(x, y)`.
729729
@@ -732,7 +732,7 @@ See also: [`rel_curve_to`](@ref).
732732
@mustimplement curve_to(gc::GraphicsContext, ::Real, ::Real, ::Real, ::Real, ::Real, ::Real)
733733

734734
"""
735-
rel_curve_to(gc::GraphicsContex, Δc1x, Δc1y, Δc2x, Δc2y, Δx, Δy)
735+
rel_curve_to(gc::GraphicsContex, Δc1x, Δc1y, Δc2x, Δc2y, Δx, Δy)
736736
737737
Add a cubic bezier curve to the path. The control points will be the current point `(x, y)` and `(x, y) + [(Δc1x, Δc1y), (Δc2x, Δc2y), (Δx, Δy)]`. The current point will be moved to `(x + Δx, y + Δy)`.
738738

0 commit comments

Comments
 (0)