summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/asymptote/rational.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/asymptote/rational.asy')
-rw-r--r--Master/texmf-dist/asymptote/rational.asy2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/asymptote/rational.asy b/Master/texmf-dist/asymptote/rational.asy
index a120c141232..aac3d5be9b1 100644
--- a/Master/texmf-dist/asymptote/rational.asy
+++ b/Master/texmf-dist/asymptote/rational.asy
@@ -11,7 +11,7 @@ int gcd(int m, int n)
int r=m % n;
m=n;
n=r;
- }
+ }
return m;
}