--- jsr166/src/jsr166e/extra/SequenceLock.java 2013/07/21 06:20:22 1.5 +++ jsr166/src/jsr166e/extra/SequenceLock.java 2013/07/21 06:24:09 1.6 @@ -257,8 +257,10 @@ public class SequenceLock implements Loc /** * Creates an instance of {@code SequenceLock} that will retry - * attempts to acquire the lock at least the given number times + * attempts to acquire the lock at least the given number of times * before blocking. + * + * @param spins the number of times before blocking */ public SequenceLock(int spins) { sync = new Sync(spins); }