Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Unified Diff: tools/gn/command_path.cc

Issue 2807193004: gn path: Add missing newline to output summary (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/command_path.cc
diff --git a/tools/gn/command_path.cc b/tools/gn/command_path.cc
index f6a4e69a6f0384032d375ca2ab11a379e1bdac1f..daa220048d920bc33d27a81b787a240609e09120 100644
--- a/tools/gn/command_path.cc
+++ b/tools/gn/command_path.cc
@@ -403,10 +403,10 @@ int RunPath(const std::vector<std::string>& args) {
stats.total_paths(), path_annotation),
DECORATION_YELLOW);
if (!options.public_only) {
- OutputString(base::StringPrintf(" %d of them are public.\n",
- stats.public_paths));
+ OutputString(
+ base::StringPrintf(" %d of them are public.", stats.public_paths));
}
- OutputString("Use --all to print all paths.\n");
+ OutputString("\nUse --all to print all paths.\n");
}
}
return 0;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698