Skip to content

Commit c358da0

Browse files
committed
fix: update my name in KineticState, PIDController, and SquIDElement documentation
1 parent f32f5fd commit c358da0

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/kotlin/dev/nextftc/control/KineticState.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ package dev.nextftc.control
2525
* @param velocity the state's velocity
2626
* @param acceleration the state's acceleration
2727
*
28-
* @author BeepBot99, zachwaffle4
28+
* @author BeepBot99, Zach Harel
2929
*/
3030
data class KineticState @JvmOverloads constructor(
3131
val position: Double = 0.0,

src/main/kotlin/dev/nextftc/control/feedback/PIDElement.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ data class PIDCoefficients @JvmOverloads constructor(
4343
*
4444
* @param coefficients the [PIDCoefficients] that contains the PID gains
4545
*
46-
* @author Zach.Waffle, rowan-mcalpin
46+
* @author Zach Harel, rowan-mcalpin
4747
*/
4848
internal class PIDController @JvmOverloads constructor(
4949
val coefficients: PIDCoefficients,
@@ -105,7 +105,7 @@ internal class PIDController @JvmOverloads constructor(
105105
*
106106
* @param coefficients The [PIDCoefficients] that contains the PID gains
107107
*
108-
* @author Zach.Waffle, rowan-mcalpin
108+
* @author Zach Harel, rowan-mcalpin
109109
*/
110110
class PIDElement @JvmOverloads constructor(
111111
private val pidType: FeedbackType,

src/main/kotlin/dev/nextftc/control/feedback/SquIDElement.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import kotlin.time.TimeSource
3232
*
3333
* @param coefficients the [PIDCoefficients] that contains the PID gains
3434
*
35-
* @author Zach.Waffle, rowan-mcalpin
35+
* @author Zach Harel, rowan-mcalpin
3636
*/
3737
internal class SquIDController(val coefficients: PIDCoefficients) {
3838

@@ -86,7 +86,7 @@ internal class SquIDController(val coefficients: PIDCoefficients) {
8686
*
8787
* @param coefficients The [PIDCoefficients] that contains the PID gains
8888
*
89-
* @author Zach.Waffle, rowan-mcalpin
89+
* @author Zach Harel, rowan-mcalpin
9090
*/
9191
class SquIDElement @JvmOverloads constructor(
9292
private val pidType: FeedbackType,

0 commit comments

Comments
 (0)