#OTHER by mawalch
authormawalch
Mon, 15 Aug 2016 15:07:23 +0200
changeset 4036 677462d5333b
parent 4035 c6509f2ef728
child 4037 dea4e4c75fa3
child 4038 3ff1884f5acd
#OTHER by mawalch class: Queue simultanously -> simultaneously
Queue.st
--- a/Queue.st	Mon Aug 15 15:05:02 2016 +0200
+++ b/Queue.st	Mon Aug 15 15:07:23 2016 +0200
@@ -48,7 +48,7 @@
     and another element is to be added. Likewise, it will report an error
     if it is empty and an element is to be removed.
 
-    It is NOT safe when two processes access Queues simultanously,
+    It is NOT safe when two processes access Queues simultaneously,
     since accesses to the internals are not protected against process-switches.
     See SharedQueue for a class which IS safe with processes and blocks
     on write when full or on read when empty.