From 3d1714943622b7ec476e609109c1d5799f5e2e1a Mon Sep 17 00:00:00 2001 From: kjenova Date: Tue, 10 Dec 2024 11:16:39 +0100 Subject: [PATCH] fix typo "wit?dth" => "width" --- itext/itext.layout/itext/layout/borders/RoundDotsBorder.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/itext/itext.layout/itext/layout/borders/RoundDotsBorder.cs b/itext/itext.layout/itext/layout/borders/RoundDotsBorder.cs index 0e4832e782..8da27b5ed0 100644 --- a/itext/itext.layout/itext/layout/borders/RoundDotsBorder.cs +++ b/itext/itext.layout/itext/layout/borders/RoundDotsBorder.cs @@ -35,13 +35,13 @@ public class RoundDotsBorder : Border { /// The modifier to be applied on the width to have the initial gap size private const float GAP_MODIFIER = 2.5f; - /// Creates a RoundDotsBorder with the specified wit?dth and sets the color to black. + /// Creates a RoundDotsBorder with the specified width and sets the color to black. /// width of the border public RoundDotsBorder(float width) : base(width) { } - /// Creates a RoundDotsBorder with the specified wit?dth and the specified color. + /// Creates a RoundDotsBorder with the specified width and the specified color. /// color of the border /// width of the border public RoundDotsBorder(Color color, float width)