From f4eb2e0937614b0c1c4dd99387146c3bd0d4649e Mon Sep 17 00:00:00 2001 From: Jimmi Holst Christensen Date: Fri, 16 Nov 2018 09:56:29 +0100 Subject: Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 92de659..c46ef11 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,9 @@ The `StreamingClap` is base of all the other parsers. It's a streaming parser th ```rust const params = []clap.Param(u8){ - clap.Param(void).flag('h', false, clap.Names.both("help")), - clap.Param(void).option('n', true, clap.Names.both("number")), - clap.Param(void).positional('f'), + clap.Param(u8).flag('h', false, clap.Names.both("help")), + clap.Param(u8).option('n', true, clap.Names.both("number")), + clap.Param(u8).positional('f'), }; var os_iter = clap.args.OsIterator.init(allocator); -- cgit v1.2.3