From 2c1be2d42491187002c047391f382daa6b04549d Mon Sep 17 00:00:00 2001 From: EECSB <50377992+EECSB@users.noreply.github.com> Date: Sun, 26 Sep 2021 00:42:41 +0200 Subject: [PATCH] Bottom PaperMargins typo fix. --- OpenHtmlToPdf/PaperMargins.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OpenHtmlToPdf/PaperMargins.cs b/OpenHtmlToPdf/PaperMargins.cs index 0d353b0c..13be78e3 100644 --- a/OpenHtmlToPdf/PaperMargins.cs +++ b/OpenHtmlToPdf/PaperMargins.cs @@ -40,9 +40,9 @@ public PaperMargins Right(Length right) return new PaperMargins(_top, right, _bottom, _left); } - public PaperMargins Botton(Length botton) + public PaperMargins Bottom(Length _bottom) { - return new PaperMargins(_top, _right, botton, _left); + return new PaperMargins(_top, _right, _bottom, _left); } public PaperMargins Left(Length left) @@ -75,4 +75,4 @@ public string LeftSetting get { return _left.SettingString; } } } -} \ No newline at end of file +}