From 3de800a60751a7798e4419e08e1a2c348620e93f Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Sun, 21 Mar 2021 11:40:15 -0700 Subject: [PATCH] [wpimath] TrajectoryUtil.h: Comment formatting (NFC) (#3262) --- .../include/frc/trajectory/TrajectoryUtil.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/wpimath/src/main/native/include/frc/trajectory/TrajectoryUtil.h b/wpimath/src/main/native/include/frc/trajectory/TrajectoryUtil.h index 297c5703e8..69482b8f73 100644 --- a/wpimath/src/main/native/include/frc/trajectory/TrajectoryUtil.h +++ b/wpimath/src/main/native/include/frc/trajectory/TrajectoryUtil.h @@ -36,19 +36,19 @@ class TrajectoryUtil { static Trajectory FromPathweaverJson(const wpi::Twine& path); /** - * Deserializes a Trajectory from PathWeaver-style JSON. - - * @param json the string containing the serialized JSON - - * @return the trajectory represented by the JSON - */ + * Deserializes a Trajectory from PathWeaver-style JSON. + * + * @param json the string containing the serialized JSON + * + * @return the trajectory represented by the JSON + */ static std::string SerializeTrajectory(const Trajectory& trajectory); /** * Serializes a Trajectory to PathWeaver-style JSON. - + * * @param trajectory the trajectory to export - + * * @return the string containing the serialized JSON */ static Trajectory DeserializeTrajectory(wpi::StringRef json_str);