diff --git a/src/Avalonia.Base/Platform/IDrawingContextImpl.cs b/src/Avalonia.Base/Platform/IDrawingContextImpl.cs index df3c9ebfc5..b52378d3b3 100644 --- a/src/Avalonia.Base/Platform/IDrawingContextImpl.cs +++ b/src/Avalonia.Base/Platform/IDrawingContextImpl.cs @@ -140,7 +140,7 @@ namespace Avalonia.Platform void PopOpacity(); /// - /// Pushes an opacity mask + /// Pushes an opacity mask. /// void PushOpacityMask(IBrush mask, Rect bounds); @@ -161,9 +161,7 @@ namespace Avalonia.Platform void PopGeometryClip(); /// - /// Get Fetaure from type - /// - /// Attempts to get an optional feature from the drawing context implementation + /// Attempts to get an optional feature from the drawing context implementation. /// object? GetFeature(Type t); } @@ -177,7 +175,7 @@ namespace Avalonia.Platform public static class DrawingContextImplExtensions { /// - /// Attempts to get an optional feature from the drawing context implementation + /// Attempts to get an optional feature from the drawing context implementation. /// public static T? GetFeature(this IDrawingContextImpl context) where T : class => (T?)context.GetFeature(typeof(T)); @@ -186,13 +184,13 @@ namespace Avalonia.Platform public interface IDrawingContextLayerImpl : IRenderTargetBitmapImpl { /// - /// Does optimized blit with Src blend mode + /// Does optimized blit with Src blend mode. /// /// void Blit(IDrawingContextImpl context); /// - /// Returns true if layer supports optimized blit + /// Returns true if layer supports optimized blit. /// bool CanBlit { get; } }