From e0eb06cf39d8fa07bdcf81da0ed35c91e201bf0c Mon Sep 17 00:00:00 2001 From: Dhilan Belur <156383747+Dillpickle9756@users.noreply.github.com> Date: Thu, 9 Oct 2025 16:39:34 -0700 Subject: [PATCH] Update 2.5_KitbotIntro.md Fixing a typo in the code for the setVoltages() method. --- Docs/2_Architecture/2.5_KitbotIntro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/2_Architecture/2.5_KitbotIntro.md b/Docs/2_Architecture/2.5_KitbotIntro.md index 56c01b6..3589090 100644 --- a/Docs/2_Architecture/2.5_KitbotIntro.md +++ b/Docs/2_Architecture/2.5_KitbotIntro.md @@ -133,7 +133,7 @@ Let's add a method for this. ```Java private void setVoltages(double left, double right) { leftTalon.setControl(leftVoltage.withOutput(left)); - rightTalon.setControl(rightVoltage.withOutput(left)); + rightTalon.setControl(rightVoltage.withOutput(right)); } ```