From 7201898b19ad5eb60c56d12b989b39872caf72e8 Mon Sep 17 00:00:00 2001 From: eugene yokota Date: Tue, 15 Aug 2017 13:58:33 -0400 Subject: [PATCH] Minor edit to comment --- main/src/main/scala/sbt/Cross.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/src/main/scala/sbt/Cross.scala b/main/src/main/scala/sbt/Cross.scala index 13db679a0..8cd7720b7 100644 --- a/main/src/main/scala/sbt/Cross.scala +++ b/main/src/main/scala/sbt/Cross.scala @@ -176,7 +176,7 @@ object Cross { // If only one project for a version, issue it directly Seq(s"$SwitchCommand $verbose $version $project/$aggCommand") case (version, projects) if aggCommand.contains(" ") => - // If the command contains a space, then the all command won't work because it doesn't support issuing + // If the command contains a space, then the `all` command won't work because it doesn't support issuing // commands with spaces, so revert to running the command on each project one at a time s"$SwitchCommand $verbose $version" :: projects.map(project => s"$project/$aggCommand")