summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/lowupint.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/lowupint.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/lowupint.asy4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/lowupint.asy b/Master/texmf-dist/doc/asymptote/examples/lowupint.asy
index 3a14cd91104..1c3a0cd9488 100644
--- a/Master/texmf-dist/doc/asymptote/examples/lowupint.asy
+++ b/Master/texmf-dist/doc/asymptote/examples/lowupint.asy
@@ -8,8 +8,8 @@ void rectangle(real a, real b, real c, real h(real,real))
real height=(a < c && c < b) ? f(c) : h(f(a),f(b));
pair p=(a,0), q=(b,height);
path g=box(p,q);
- fill(g,lightgray);
- draw(g);
+ fill(g,lightgray);
+ draw(g);
}
void partition(real a, real b, real c, real h(real,real))