diff --git a/Readme.md b/Readme.md index 3bf6d3f..9fbf6bb 100644 --- a/Readme.md +++ b/Readme.md @@ -24,13 +24,14 @@ Usage: jaydiff [OPTIONS] FILE_1 FILE_2 Application Options: - -i, --ignore= paths to ignore (glob) - --indent= indent string (default: "\t") - -t, --show-types show types - -r, --report output report format + -i, --ignore= paths to ignore (glob) + --indent= indent string (default: "\t") + -t, --show-types show types + --ignore-excess ignore excess keys and arrey elements + -r, --report output report format Help Options: - -h, --help Show this help message + -h, --help Show this help message ``` ## Examples diff --git a/doc.go b/doc.go index a86b3ef..2a95faa 100644 --- a/doc.go +++ b/doc.go @@ -4,12 +4,13 @@ // jaydiff [OPTIONS] FILE_1 FILE_2 // // Application Options: -// --indent= indent string (default: "\t") -// -t, --show-types show types -// -i, --ignore= paths to ignore (glob) -// -r, --report output report format +// -i, --ignore= paths to ignore (glob) +// --indent= indent string (default: "\t") +// -t, --show-types show types +// --ignore-excess ignore excess keys and arrey elements +// -r, --report output report format // // Help Options: -// -h, --help Show this help message +// -h, --help Show this help message // package main