diff options
author | Ori Bernstein <ori@eigenstate.org> | 2014-07-09 21:57:07 -0400 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2014-07-09 21:57:07 -0400 |
commit | e002242442a548429f014ec3a5c30f1d40799a7a (patch) | |
tree | 8b94add5dc476fede0e4345646b23aba8317a263 /libstd/optparse.myr | |
parent | 73d297264fae92c1e716f05e5f42496fad95dd37 (diff) | |
download | mc-e002242442a548429f014ec3a5c30f1d40799a7a.tar.gz |
Change syntax for tuples.
Diffstat (limited to 'libstd/optparse.myr')
-rw-r--r-- | libstd/optparse.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstd/optparse.myr b/libstd/optparse.myr index 0da8aae..45f2100 100644 --- a/libstd/optparse.myr +++ b/libstd/optparse.myr @@ -25,7 +25,7 @@ pkg std = ;; const optinit : (optstr: byte[:], optargs : byte[:][:] -> optctx#) - const optnext : (ctx : optctx# -> [char, byte[:]]) + const optnext : (ctx : optctx# -> (char, byte[:])) const optdone : (ctx : optctx# -> bool) const optfin : (ctx : optctx# -> byte[:][:]) ;; |