RecursionLock.st
branchjv
changeset 20131 4118d61ddba0
parent 18749 d6947ad2feaf
parent 20117 4dec7bf01eb5
child 20205 03e626304d06
--- a/RecursionLock.st	Wed Jul 06 06:50:27 2016 +0200
+++ b/RecursionLock.st	Sat Jul 09 21:10:24 2016 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1995 by Claus Gittinger
 	      All Rights Reserved
@@ -250,14 +248,14 @@
 !
 
 critical:aBlock ifBlocking:blockingBlock
-    "like critical:, but do not block if the lock cannot be aquired.
+    "like critical:, but do not block if the lock cannot be acquired.
      Instead, return the value of the second argument, blockingBlock."
 
     ^ self critical:aBlock timeoutMs:0 ifBlocking:blockingBlock.
 !
 
 critical:aBlock timeoutMs:timeoutMs ifBlocking:blockingBlock
-    "like critical:, but do not block if the lock cannot be aquired 
+    "like critical:, but do not block if the lock cannot be acquired 
      within timeoutMs milliseconds.
      Instead, return the value of blockingBlock."