From b04c74013e803e674293c6b76a992dda9a2cbf3b Mon Sep 17 00:00:00 2001 From: Malefic Date: Tue, 3 Dec 2024 19:25:24 -0800 Subject: [PATCH] fix(dokka): expand function in dokka to show full docs that's why only the first sentence shows up otherwise --- src/main/java/frc/robot/subsystems/Photonvision.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/frc/robot/subsystems/Photonvision.java b/src/main/java/frc/robot/subsystems/Photonvision.java index 47a4657..7312648 100644 --- a/src/main/java/frc/robot/subsystems/Photonvision.java +++ b/src/main/java/frc/robot/subsystems/Photonvision.java @@ -91,7 +91,9 @@ public void periodic() { } /** - * Checks if there is a tag. This method is useful to avoid NullPointerExceptions when trying to access specific info based on vision. + * Checks if there is a tag. + *

+ * This method is useful to avoid NullPointerExceptions when trying to access specific info based on vision. * @return true if there is a tag, false otherwise. */ public boolean hasTag() {