Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit 1f3ce50

Browse files
committed
Fix typo
1 parent f2c62fd commit 1f3ce50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Entities/AtomGroup.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ namespace RTE {
380380
// The amount of rotation to be achieved during the time slot, in radians.
381381
float rotDelta = angVel * timeLeft;
382382

383-
// Cap the segment if the oration is too severe. This will chunk the segment into several in order to more closely approximate the arc an Atom on a rotating body will trace.
383+
// Cap the segment if the rotation is too severe. This will chunk the segment into several in order to more closely approximate the arc an Atom on a rotating body will trace.
384384
if (std::fabs(rotDelta) > segRotLimit) {
385385
segRatio = segRotLimit / std::fabs(rotDelta);
386386
rotDelta = (rotDelta > 0) ? segRotLimit : -segRotLimit;

0 commit comments

Comments
 (0)