SvenGroot / Ookii.CommandLine

Ookii.CommandLine is a powerful and flexible command line argument parsing library for .Net applications, supporting PowerShell-like and POSIX-like conventions, as well as subcommands.
MIT License
27 stars 7 forks source link

Ookii.CommandLine.NameTrasform enum items' descriptions switched #8

Closed GazzLightyear closed 1 year ago

GazzLightyear commented 1 year ago

Hi Sven :D

Just a small notice: descriptions switched!!

        //
        // Summary:
        //     The names are transformed to snake_case. This removes leading and trailing underscores,
        //     changes all characters to lower-case, and reduces consecutive underscores to
        //     a single underscore. An underscore is inserted before previously capitalized
        //     letters.
        DashCase,
        //
        // Summary:
        //     The names are transformed to dash-case. Similar to Ookii.CommandLine.NameTransform.SnakeCase,
        //     but uses a dash instead of an underscore.
        SnakeCase
    }
}
SvenGroot commented 1 year ago

Thanks! This is now fixed. I've also updated the class library documentation. The XML documentation in the package will be updated the next time I release an update.