summaryrefslogtreecommitdiff
path: root/graphics/asymptote/examples/gamma3.asy
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/examples/gamma3.asy')
-rw-r--r--graphics/asymptote/examples/gamma3.asy2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/asymptote/examples/gamma3.asy b/graphics/asymptote/examples/gamma3.asy
index e522dad4e7..6fc56065cb 100644
--- a/graphics/asymptote/examples/gamma3.asy
+++ b/graphics/asymptote/examples/gamma3.asy
@@ -7,7 +7,7 @@ currentprojection=orthographic(1,-2,1);
real X=4.5;
real M=abs(gamma((X,0)));
-pair Gamma(pair z)
+pair Gamma(pair z)
{
return (z.x > 0 || z != floor(z.x)) ? gamma(z) : M;
}