diff options
| author | SekoiaTree <51149447+SekoiaTree@users.noreply.github.com> | 2023-04-02 19:55:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-02 19:55:25 +0200 |
| commit | c799421879f14a18b756420ebd9912251756c5df (patch) | |
| tree | 40aa1bcf66dab8b7429b5f16c3f84c834f91f18f /library | |
| parent | b469f30c83f50a5728888c7a800d31321e160e5d (diff) | |
Fix a copy-paste typo in CircleElem's docs (#534)
Diffstat (limited to 'library')
| -rw-r--r-- | library/src/visualize/shape.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/src/visualize/shape.rs b/library/src/visualize/shape.rs index 601f0d85..ba7f052f 100644 --- a/library/src/visualize/shape.rs +++ b/library/src/visualize/shape.rs @@ -382,7 +382,7 @@ pub struct CircleElem { /// The circle's width. This is mutually exclusive with `radius` and /// `height`. /// - /// In contrast to `size`, this can be relative to the parent container's + /// In contrast to `radius`, this can be relative to the parent container's /// width. #[parse( let size = args @@ -398,7 +398,7 @@ pub struct CircleElem { /// The circle's height.This is mutually exclusive with `radius` and /// `width`. /// - /// In contrast to `size`, this can be relative to the parent container's + /// In contrast to `radius`, this can be relative to the parent container's /// height. #[parse(match size { None => args.named("height")?, |
