shithub: mc

Download patch

ref: 80ae8b93281474a85ca5f3790e34ffeaff4ac866
parent: ff0dabb5294b6fab33fc8cd68b2fcc37a00c28c0
author: Ori Bernstein <[email protected]>
date: Wed Oct 23 21:13:55 EDT 2013

Add in missing spaces.

--- a/libstd/optparse.myr
+++ b/libstd/optparse.myr
@@ -18,12 +18,12 @@
 
 		/* state */
 		optdone	: bool	/* if we've seen '--', everything's an arg */
-		finished	: bool	/* if we've processed all theoptargs */
+		finished	: bool	/* if we've processed all the optargs */
 		argidx	: size
 		curarg	: byte[:]
 	;;
 
-	const optinit	: (optstr: byte[:],optargs : byte[:][:] -> optctx#)
+	const optinit	: (optstr: byte[:], optargs : byte[:][:] -> optctx#)
 	const optnext	: (ctx : optctx# -> [char, byte[:]])
 	const optdone	: (ctx : optctx# -> bool)
 ;;