From aa0226124843bf8a3960e5e0ec2dc41c50a65a8f Mon Sep 17 00:00:00 2001 From: wvbe Date: Wed, 6 Jul 2022 11:51:10 +0200 Subject: [PATCH] docs: Fix property name accuracy in describing paragraph borders --- docs/usage/paragraph.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/usage/paragraph.md b/docs/usage/paragraph.md index 7dd9adaadf..42658f6cca 100644 --- a/docs/usage/paragraph.md +++ b/docs/usage/paragraph.md @@ -121,7 +121,7 @@ Add borders to a `Paragraph`. Good for making the `Paragraph` stand out | -------- | -------- | -------- | | color | `string` | Required | | space | `number` | Required | -| value | `string` | Required | +| style | `string` | Required | | size | `number` | Required | **Example:** @@ -135,13 +135,13 @@ const paragraph = new Paragraph({ top: { color: "auto", space: 1, - value: "single", + style: "single", size: 6, }, bottom: { color: "auto", space: 1, - value: "single", + style: "single", size: 6, }, },