From 6f211bf054a274042c52f991f5ac5a53ba91519e Mon Sep 17 00:00:00 2001 From: Matt Morley Date: Fri, 10 Jan 2025 19:50:03 -0700 Subject: [PATCH] Add missing whitespace in InvalidImageException (#773) --- .../first/gradlerio/deploy/roborio/InvalidImageException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/edu/wpi/first/gradlerio/deploy/roborio/InvalidImageException.java b/src/main/java/edu/wpi/first/gradlerio/deploy/roborio/InvalidImageException.java index 2ff9590c..88cb15a5 100644 --- a/src/main/java/edu/wpi/first/gradlerio/deploy/roborio/InvalidImageException.java +++ b/src/main/java/edu/wpi/first/gradlerio/deploy/roborio/InvalidImageException.java @@ -22,7 +22,7 @@ private static String parseMessage(String imageVersion, List allowedImag "\n\tCurrent image version: " + imageVersion + "\n\tGradleRIO-compatible image versions: " + String.join(", ", allowedImageVersions) + "\nSee https://docs.wpilib.org/en/stable/docs/zero-to-robot/step-3/imaging-your-roborio.html" + - "for information about upgrading the RoboRIO image." + + "\nfor information about upgrading the RoboRIO image." + "\nSee https://docs.wpilib.org/en/stable/docs/zero-to-robot/step-2/wpilib-setup.html and" + "\nhttps://docs.wpilib.org/en/stable/docs/software/vscode-overview/importing-gradle-project.html" + "\nfor information about updating WPILib and GradleRIO.";