summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/filegraph.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/filegraph.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/filegraph.asy2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/filegraph.asy b/Master/texmf-dist/doc/asymptote/examples/filegraph.asy
index 4b05c5bcbd7..0add531a3e0 100644
--- a/Master/texmf-dist/doc/asymptote/examples/filegraph.asy
+++ b/Master/texmf-dist/doc/asymptote/examples/filegraph.asy
@@ -3,7 +3,7 @@ import graph;
size(200,150,IgnoreAspect);
file in=input("filegraph.dat").line();
-real[][] a=in.dimension(0,0);
+real[][] a=in;
a=transpose(a);
real[] x=a[0];