Skip to content

Commit

Permalink
missing comma in JSON output
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Ondov committed Aug 10, 2016
1 parent 2876515 commit b66a2e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mash/CommandInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ int CommandInfo::writeJson(const Sketch & sketch) const
cout << " \"preserveCase\" : " << (sketch.getPreserveCase() ? "true" : "false") << ',' << endl;
cout << " \"canonical\" : " << (sketch.getNoncanonical() ? "false" : "true") << ',' << endl;
cout << " \"sketchSize\" : " << sketch.getMinHashesPerWindow() << ',' << endl;
cout << " \"hashType\" : \"" << HASH << "\"" << endl;
cout << " \"hashType\" : \"" << HASH << "\"," << endl;
cout << " \"hashBits\" : " << (use64 ? 64 : 32) << ',' << endl;
cout << " \"hashSeed\" : " << seed << ',' << endl;
cout << " \"sketches\" :" << endl;
Expand Down

0 comments on commit b66a2e5

Please sign in to comment.