From 81f6432bc6edb52bd1b45af31a2ff0fa828d112a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A3=8E=E9=9B=A8=E5=A3=B0?= <52450772+996666925@users.noreply.github.com> Date: Sun, 3 Dec 2023 13:30:54 +0800 Subject: [PATCH] Fix typo in DrawingContext.cs (#13811) --- src/Avalonia.Base/Media/DrawingContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Avalonia.Base/Media/DrawingContext.cs b/src/Avalonia.Base/Media/DrawingContext.cs index 5d258cb040..bd2c43878d 100644 --- a/src/Avalonia.Base/Media/DrawingContext.cs +++ b/src/Avalonia.Base/Media/DrawingContext.cs @@ -123,7 +123,7 @@ namespace Avalonia.Media /// Box shadow effect parameters /// /// The brush and the pen can both be null. If the brush is null, then no fill is performed. - /// If the pen is null, then no stoke is performed. If both the pen and the brush are null, then the drawing is not visible. + /// If the pen is null, then no stroke is performed. If both the pen and the brush are null, then the drawing is not visible. /// public void DrawRectangle(IBrush? brush, IPen? pen, Rect rect, double radiusX = 0, double radiusY = 0,