summaryrefslogtreecommitdiff
path: root/libstd/optparse.myr
diff options
context:
space:
mode:
authorOri Bernstein <ori@eigenstate.org>2014-07-09 21:57:07 -0400
committerOri Bernstein <ori@eigenstate.org>2014-07-09 21:57:07 -0400
commite002242442a548429f014ec3a5c30f1d40799a7a (patch)
tree8b94add5dc476fede0e4345646b23aba8317a263 /libstd/optparse.myr
parent73d297264fae92c1e716f05e5f42496fad95dd37 (diff)
downloadmc-e002242442a548429f014ec3a5c30f1d40799a7a.tar.gz
Change syntax for tuples.
Diffstat (limited to 'libstd/optparse.myr')
-rw-r--r--libstd/optparse.myr2
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[:][:])
;;