Index: openacs-4/packages/acs-subsite/tcl/group-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/tcl/group-procs.tcl,v diff -u -N -r1.38.2.3 -r1.38.2.4 --- openacs-4/packages/acs-subsite/tcl/group-procs.tcl 23 Jul 2014 21:27:53 -0000 1.38.2.3 +++ openacs-4/packages/acs-subsite/tcl/group-procs.tcl 9 Sep 2014 08:31:59 -0000 1.38.2.4 @@ -30,21 +30,21 @@

There are now several ways to create a group of a given - type. You can use this TCL API with or without a form from the form + type. You can use this Tcl API with or without a form from the form system, or you can directly use the PL/SQL API for the group type.

Examples:

 
-    # OPTION 1: Create the group using the TCL Procedure. Useful if the
+    # OPTION 1: Create the group using the Tcl Procedure. Useful if the
     # only attribute you need to specify is the group name
     
     db_transaction {
         set group_id [group::new -group_name "Author" $group_type]
     }
     
     
-    # OPTION 2: Create the group using the TCL API with a templating
+    # OPTION 2: Create the group using the Tcl API with a templating
     # form. Useful when there are multiple attributes to specify for the
     # group