diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-01-03 15:46:21 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-01-03 15:46:21 +0100 |
commit | c44ef31172ceb42804331bd2b13649287c48a211 (patch) | |
tree | 7b32be6dc5abf02e0cabfd03a6d3573c8ef06362 | |
parent | 1f50722ac14c7557ec3ea9389aad114c72379600 (diff) |
doc: Fix documentation for polygon.
-rw-r--r-- | doc/picture-language.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/picture-language.texi b/doc/picture-language.texi index 069281b..c3005da 100644 --- a/doc/picture-language.texi +++ b/doc/picture-language.texi @@ -233,7 +233,7 @@ with @code{map} and @code{cons}: @cindex polygon, simple shape @deffn {Scheme Procedure} polygon @ @var{points} @ - [#:color @var{"black"} #:stroke-width @var{1}] + [#:border-color @var{"black"} #:border-width @var{1}] The @code{polygon} procedure has almost the exact same behavior as @code{polyline}, except that it connects the first point and the last @@ -242,8 +242,8 @@ the two points unconnected. This procedure draws a line through @var{POINTS}, a list of x and y coordinate pairs, connecting the first and last points. The keys -@var{COLOR} (a string) and @var{STROKE-WIDTH} (a number) are accepted to -override the line color and line thickness. +@var{BORDER-COLOR} (a string) and @var{BORDER-WIDTH} (a number) are +accepted to override the line color and line thickness. @end deffn @cindex polygon, example |