Skip to content

Commit

Permalink
Merge pull request #39 from Microsoft/issue38
Browse files Browse the repository at this point in the history
Fix help message about formats
  • Loading branch information
heaths authored Mar 13, 2017
2 parents bdd4404 + a58ca27 commit a6c20d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vswhere.lib/Formatter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Formatter::Formatter()

Formatter::FormatterMap Formatter::Formatters =
{
{ L"json", make_tuple(IDS_FORMAT_TEXT, JsonFormatter::Create) },
{ L"text", make_tuple(IDS_FORMAT_JSON, TextFormatter::Create) },
{ L"json", make_tuple(IDS_FORMAT_JSON, JsonFormatter::Create) },
{ L"text", make_tuple(IDS_FORMAT_TEXT, TextFormatter::Create) },
{ L"value", make_tuple(IDS_FORMAT_VALUE, ValueFormatter::Create) },
{ L"xml", make_tuple(IDS_FORMAT_XML, XmlFormatter::Create) },
};
Expand Down

0 comments on commit a6c20d3

Please sign in to comment.