The unpac monorepo manager self-hosting as a monorepo using unpac

Fix documentation.

+3 -3
+3 -3
src/cmdliner.mli
··· 673 673 (see {!Arg.flag}, {!Arg.vflag}) or an optional argument with an optional 674 674 value (see the [~vopt] argument of {!Arg.opt}). 675 675 676 - Short flags can be grouped togheter to share a single dash and the group 676 + Short flags can be grouped together to share a single dash and the group 677 677 can end with a short option. For example assuming ["-v"] and ["-x"] 678 678 are flags and ["-f"] is a short option: 679 679 {ul 680 680 {- ["-vx"] will be parsed as ["-v -x"].} 681 - {- ["-vxfopt"] will be parsed as ["-v -x -f=opt"].} 682 - {- ["-vxf opt"] will be parsed as ["-v -x -f=opt"].} 681 + {- ["-vxfopt"] will be parsed as ["-v -x -fopt"].} 682 + {- ["-vxf opt"] will be parsed as ["-v -x -fopt"].} 683 683 {- ["-fvx"] will be parsed as ["-f=vx"].}} 684 684 685 685 {2:posargs Positional arguments}