From b618bac0a49c99f294349fa1ed09f79bb6a19eac Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Tue, 18 Jan 2022 08:31:04 +0100 Subject: [PATCH] fix(markdown): The offset is the d prop in pd macro --- markdown/dev/reference/api/macros/pd/en.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/markdown/dev/reference/api/macros/pd/en.md b/markdown/dev/reference/api/macros/pd/en.md index 666c787a54a..03d8de25ecd 100644 --- a/markdown/dev/reference/api/macros/pd/en.md +++ b/markdown/dev/reference/api/macros/pd/en.md @@ -17,11 +17,11 @@ macro('pd', { | Property | Default | Type | Description | |----------------:|---------|---------------------|-------------| | `path` | | [Path](/reference/api/path) | The path to draw the dimension along | -| `offset` | 0 | Number | The offset at which to draw the dimension | +| `d` | 0 | Number | The offset at which to draw the dimension | | `text` | Path length | Number | The text to go on the dimension if not the length of the path | | `id` | auto-assigned | String | A custom ID under wich paths and points will be created | | `noStartMarker` | `false` | Boolean | Whether to not draw a start marker | -| `noEndMarker` | `false` | Boolean | Whether to not draw an end marker | +| `noEndMarker` | `false` | Boolean | Whether to not draw an end marker |