summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/rainbow.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/rainbow.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/rainbow.asy2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/rainbow.asy b/Master/texmf-dist/doc/asymptote/examples/rainbow.asy
index c85282a87b1..1da0e07ae7c 100644
--- a/Master/texmf-dist/doc/asymptote/examples/rainbow.asy
+++ b/Master/texmf-dist/doc/asymptote/examples/rainbow.asy
@@ -4,7 +4,7 @@ pen indigo=rgb(102/255,0,238/255);
void rainbow(path g) {
draw(new path[] {scale(1.3)*g,scale(1.2)*g,scale(1.1)*g,g,
- scale(0.9)*g,scale(0.8)*g,scale(0.7)*g},
+ scale(0.9)*g,scale(0.8)*g,scale(0.7)*g},
new pen[] {red,orange,yellow,green,blue,indigo,purple});
}