Skip to content

Commit

Permalink
I just added the missing n in thickness issue #962 (#964)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skimmenthal13 authored Jul 28, 2024
1 parent ec5dada commit 5cc54e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/QuestPDF/Fluent/LineExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ public static ILine LineVertical(this IContainer element, float thickess, Unit u
/// The line is not just a visual element; it occupies actual space within the document.
/// </remarks>
/// <returns>A descriptor to modify line attributes.</returns>
public static ILine LineHorizontal(this IContainer element, float thickess, Unit unit = Unit.Point)
public static ILine LineHorizontal(this IContainer element, float thickness, Unit unit = Unit.Point)
{
return element.Line(LineType.Horizontal, thickess.ToPoints(unit));
return element.Line(LineType.Horizontal, thickness.ToPoints(unit));
}

/// <summary>
Expand Down

0 comments on commit 5cc54e0

Please sign in to comment.