diff options
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/diatom.asy')
-rw-r--r-- | Master/texmf/doc/asymptote/examples/diatom.asy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf/doc/asymptote/examples/diatom.asy b/Master/texmf/doc/asymptote/examples/diatom.asy index 905b432c90d..2ded75bf0ea 100644 --- a/Master/texmf/doc/asymptote/examples/diatom.asy +++ b/Master/texmf/doc/asymptote/examples/diatom.asy @@ -8,9 +8,9 @@ string data="diatom.csv"; string[] group; int[] begin,end; -defaultpen(fontsize(8)+overwrite(MoveQuiet)); +defaultpen(fontsize(8pt)+overwrite(MoveQuiet)); -file in=line(csv(input(data))); +file in=input(data).line().csv(); string depthlabel=in; string yearlabel=in; |