Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions OpenHtmlToPdf/PaperMargins.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -75,4 +75,4 @@ public string LeftSetting
get { return _left.SettingString; }
}
}
}
}