Skip to content

Commit

Permalink
Add missing closing angle bracket in velocity unit example (#2588)
Browse files Browse the repository at this point in the history
  • Loading branch information
nlaverdure committed Mar 1, 2024
1 parent 58761b2 commit 56414bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/docs/software/basic-programming/java-units.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Other measures can also be created using their ``Unit.of`` method:
Measure<Distance> kArmLength = Inches.of(32.25);
Measure<Angle> kMinArmAngle = Degrees.of(5);
Measure<Angle> kArmMaxTravel = Rotations.of(0.45);
Measure<Velocity<Distance> kMaxSpeed = MetersPerSecond.of(2.5);
Measure<Velocity<Distance>> kMaxSpeed = MetersPerSecond.of(2.5);
Performing Calculations
^^^^^^^^^^^^^^^^^^^^^^^
Expand Down

0 comments on commit 56414bf

Please sign in to comment.