From 4bdfd54bc64cdc5d336b2a74339428df1bbcd46f Mon Sep 17 00:00:00 2001 From: Eric Greer Date: Sun, 27 Oct 2019 20:31:16 -0700 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 19d0178..dffcf99 100644 --- a/README.md +++ b/README.md @@ -153,13 +153,13 @@ print(flaggy.TrailingArguments[0]) # Supported Flag Types -Flaggy has specific functions for all basic types included in go as well as slice of those types. This includes: +Flaggy has specific flag types for all basic types included in go as well as a slice of any of those types. This includes all of the following types: - string and []string - bool and []bool +- all int types and all []int types - all float types and all []float types - all uint types and all []uint types -- all int types and all []int types Other more specific types can also be used as flag types. They will be automatically parsed using the standard parsing functions included with those types in those packages. This includes: