From bb9f068782925453aa7285eb885e9eb3ebb11198 Mon Sep 17 00:00:00 2001 From: Tom Conkling Date: Fri, 6 Feb 2009 21:24:41 +0000 Subject: [PATCH] commentfix git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5650 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/util/Throttle.as | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/as/com/threerings/util/Throttle.as b/src/as/com/threerings/util/Throttle.as index 64d22bef3..9257c6629 100644 --- a/src/as/com/threerings/util/Throttle.as +++ b/src/as/com/threerings/util/Throttle.as @@ -98,8 +98,8 @@ public class Throttle } /** - * Registers an attempt at an operation and returns true if the operation should be performed - * or false if it should be throttled (meaning N operations have already been performed in the + * Registers an attempt at an operation and returns false if the operation should be performed + * or true if it should be throttled (meaning N operations have already been performed in the * last M seconds). * * @return true if the throttle is activated, false if the operation can proceed. @@ -110,8 +110,8 @@ public class Throttle } /** - * Registers an attempt at an operation and returns true if the operation should be performed - * or false if it should be throttled (meaning N operations have already been performed in the + * Registers an attempt at an operation and returns false if the operation should be performed + * or true if it should be throttled (meaning N operations have already been performed in the * last M seconds). * * @param timeStamp the timestamp at which this operation is being attempted.