From b20158015c5457dd68bb6e7ce95b501b367f338d Mon Sep 17 00:00:00 2001 From: Thad House Date: Sun, 10 Jun 2018 20:12:41 -0700 Subject: [PATCH] Update java robot class docs (#1150) --- .../edu/wpi/first/wpilibj/templates/commandbased/Robot.java | 2 +- .../java/edu/wpi/first/wpilibj/templates/iterative/Robot.java | 2 +- .../java/edu/wpi/first/wpilibj/templates/timed/Robot.java | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/templates/commandbased/Robot.java b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/templates/commandbased/Robot.java index 01e8f4c6b5..8116b70286 100644 --- a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/templates/commandbased/Robot.java +++ b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/templates/commandbased/Robot.java @@ -19,7 +19,7 @@ import edu.wpi.first.wpilibj.templates.commandbased.subsystems.ExampleSubsystem; * The VM is configured to automatically run this class, and to call the * functions corresponding to each mode, as described in the TimedRobot * documentation. If you change the name of this class or the package after - * creating this project, you must also update the build.properties file in the + * creating this project, you must also update the build.gradle file in the * project. */ public class Robot extends TimedRobot { diff --git a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/templates/iterative/Robot.java b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/templates/iterative/Robot.java index e2a7b25245..ece6edbd9f 100644 --- a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/templates/iterative/Robot.java +++ b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/templates/iterative/Robot.java @@ -15,7 +15,7 @@ import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard; * The VM is configured to automatically run this class, and to call the * functions corresponding to each mode, as described in the IterativeRobot * documentation. If you change the name of this class or the package after - * creating this project, you must also update the build.properties file in the + * creating this project, you must also update the build.gradle file in the * project. */ public class Robot extends IterativeRobot { diff --git a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/templates/timed/Robot.java b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/templates/timed/Robot.java index 3965bcb414..7167f7099c 100644 --- a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/templates/timed/Robot.java +++ b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/templates/timed/Robot.java @@ -13,9 +13,9 @@ import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard; /** * The VM is configured to automatically run this class, and to call the - * functions corresponding to each mode, as described in the IterativeRobot + * functions corresponding to each mode, as described in the TimedRobot * documentation. If you change the name of this class or the package after - * creating this project, you must also update the build.properties file in the + * creating this project, you must also update the build.gradle file in the * project. */ public class Robot extends TimedRobot {