diff --git a/src/java/com/threerings/media/FrameManager.java b/src/java/com/threerings/media/FrameManager.java index bde503b3..66c237ba 100644 --- a/src/java/com/threerings/media/FrameManager.java +++ b/src/java/com/threerings/media/FrameManager.java @@ -170,7 +170,7 @@ public abstract class FrameManager * Instructs the frame manager to target the specified number of frames per second. If the * computation and rendering for a frame are completed with time to spare, the frame manager * will wait until the proper time to begin processing for the next frame. If a frame takes - * longer than its alotted time, the frame manager will immediately begin processing on the + * longer than its allotted time, the frame manager will immediately begin processing on the * next frame. */ public void setTargetFrameRate (int fps) @@ -765,7 +765,7 @@ public abstract class FrameManager /** Used to lazily set the clip when painting popups and other "layered" components. */ protected boolean[] _clipped = new boolean[1]; - /** The entites that are ticked each frame. */ + /** The entities that are ticked each frame. */ protected Object[] _participants = new Object[4]; /** If we don't get ticked for 500ms, that's worth complaining about. */ diff --git a/src/java/com/threerings/media/FrameParticipant.java b/src/java/com/threerings/media/FrameParticipant.java index 9f687edf..f4fb71aa 100644 --- a/src/java/com/threerings/media/FrameParticipant.java +++ b/src/java/com/threerings/media/FrameParticipant.java @@ -57,7 +57,7 @@ public interface FrameParticipant *

Because clipping is expensive in terms of rectangle object * allocation, frame participants are given the opportunity to do * their own clipping because they are likely to want to clip to a - * more fine grained region than their entire bounds. If a particpant + * more fine grained region than their entire bounds. If a participant * does not wish to be actively rendered, it can safely return null. */ public Component getComponent (); diff --git a/src/java/com/threerings/media/MetaMediaManager.java b/src/java/com/threerings/media/MetaMediaManager.java index b0ae2d47..39a26493 100644 --- a/src/java/com/threerings/media/MetaMediaManager.java +++ b/src/java/com/threerings/media/MetaMediaManager.java @@ -90,7 +90,7 @@ public class MetaMediaManager } /** - * Returns the region manager used to coordiante our dirty regions. + * Returns the region manager used to coordinate our dirty regions. */ public RegionManager getRegionManager () { @@ -217,7 +217,7 @@ public class MetaMediaManager } /** - * Our media front end should implement {@link FrameParticipant} and call this methed in their + * Our media front end should implement {@link FrameParticipant} and call this method in their * {@link FrameParticipant#tick} method. They must also first check {@link #isPaused} and not * call this method if we are paused. As they will probably want to have willTick() and * didTick() calldown methods, we cannot handle pausedness for them. @@ -271,7 +271,7 @@ public class MetaMediaManager } /** - * Our media front end should implement {@link FrameParticipant} and call this methed in their + * Our media front end should implement {@link FrameParticipant} and call this method in their * {@link FrameParticipant#needsPaint} method. */ public boolean needsPaint () diff --git a/src/java/com/threerings/media/sprite/Sprite.java b/src/java/com/threerings/media/sprite/Sprite.java index 8611ea3c..42d2e040 100644 --- a/src/java/com/threerings/media/sprite/Sprite.java +++ b/src/java/com/threerings/media/sprite/Sprite.java @@ -34,7 +34,7 @@ import com.threerings.media.util.Path; import com.threerings.media.util.Pathable; /** - * The sprite class represents a single moveable object in an animated view. A sprite has a + * The sprite class represents a single movable object in an animated view. A sprite has a * position and orientation within the view, and can be moved along a path. */ public abstract class Sprite extends AbstractMedia