diff --git a/src/post_modules/_ADT/circular_list.cmod b/src/post_modules/_ADT/circular_list.cmod
index 51bfb26d266d664f6724acd2fa929947d37a91be..c7757eec34b0cb5614d872e858c07a5281a5e19c 100644
--- a/src/post_modules/_ADT/circular_list.cmod
+++ b/src/post_modules/_ADT/circular_list.cmod
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: circular_list.cmod,v 1.16 2005/06/22 15:49:54 grubba Exp $
+|| $Id: circular_list.cmod,v 1.17 2006/08/06 14:33:51 mast Exp $
 */
 
 #include "global.h"
@@ -292,8 +292,8 @@ PIKECLASS CircularList
 
 /*! @decl void _insert_element(int index, mixed value)
  *! Insert an element in the list at the position @[index], the value
- *! at the position @[index] and all above will have thier index increased 
- *! with one.
+ *! at the position @[index] and all above will have their index increased
+ *! by one.
  *! 
  *! @param index 
  *!   The index to insert the value at.
diff --git a/src/post_modules/_ADT/sequence.cmod b/src/post_modules/_ADT/sequence.cmod
index f46f0d39f25d2967927cc65b9ea30038d2f10bb2..06b9e3f1e8cbce3ffae4c3c337fd25d34319785f 100644
--- a/src/post_modules/_ADT/sequence.cmod
+++ b/src/post_modules/_ADT/sequence.cmod
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: sequence.cmod,v 1.17 2006/03/16 19:28:30 grubba Exp $
+|| $Id: sequence.cmod,v 1.18 2006/08/06 14:33:51 mast Exp $
 */
 
 #include "global.h"
@@ -286,7 +286,7 @@ PIKECLASS Sequence
 /*! @decl void _insert_element(int index, mixed value)
  *! Insert an element in the sequence at the position @[index], the value
  *! at the position @[index] and all above will have their index increased 
- *! with one.
+ *! by one.
  *! 
  *! @param index 
  *!   The index to insert the value at.