Skip to content

Commit

Permalink
fix: typo in indentEnd style code. (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwklein authored Mar 29, 2024
1 parent 192c751 commit 367ad41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hast/common/paragraphStyle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const paragraphStyleToAttributes = ({
}

if (indentEnd?.magnitude != undefined) {
style.paddingRight = `${indentStart.magnitude}${indentStart.unit}`;
style.paddingRight = `${indentEnd.magnitude}${indentEnd.unit}`;
}

if (indentFirstLine?.magnitude != undefined) {
Expand Down

0 comments on commit 367ad41

Please sign in to comment.