Index: openacs-4/packages/xotcl-core/tcl/40-thread-mod-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/tcl/40-thread-mod-procs.tcl,v diff -u -N -r1.20 -r1.20.2.1 --- openacs-4/packages/xotcl-core/tcl/40-thread-mod-procs.tcl 20 Jan 2019 15:21:17 -0000 1.20 +++ openacs-4/packages/xotcl-core/tcl/40-thread-mod-procs.tcl 10 Mar 2019 22:13:52 -0000 1.20.2.1 @@ -53,7 +53,7 @@ hide the fact, that certain classes/objects are part of a thread. The following command creates a Proxy for an object c1 in thread t1. - After this, c1 can be used like an local object. + After this, c1 can be used like a local object.
   ::xotcl::THREAD::Proxy c1 -attach t1
   set x [c1 ++]
@@ -295,7 +295,7 @@
 
 #
 # Sample Thread client routine, calls a same named object in the
-# server thread. Thread clients should be created in an connection
+# server thread. Thread clients should be created in a connection
 # thread dynamically to avoid name clashes in the blueprint.
 
 Class create ::xotcl::THREAD::Client -parameter {server {serverobj [self]}}