Index: openacs-4/packages/notifications/tcl/notification-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/tcl/notification-procs.tcl,v
diff -u -r1.18 -r1.19
--- openacs-4/packages/notifications/tcl/notification-procs.tcl	7 Aug 2017 23:48:13 -0000	1.18
+++ openacs-4/packages/notifications/tcl/notification-procs.tcl	28 Mar 2018 20:26:52 -0000	1.19
@@ -141,7 +141,7 @@
         <p>
 
         In any situation where you're doing dynamic notifications, you must supply the ID of an ACS object which is
-        specific to the underlying event in the 'action_id' parameter. This is required for the interal functioning of 
+        specific to the underlying event in the 'action_id' parameter. This is required for the integral functioning of 
         dynamic recipient groups. Typically this would be the ID of a forums posting, a workflow log entry, or a 
         web log entry.
 
@@ -159,7 +159,7 @@
         don't intend to use the result, as it requires an extra query to get.
 
         @param subset A list of user_id's of a subset of users who should be notified. Only those who have a 
-        notification request for this object, and who are in the subset list will get notified. Unless you specifiy the 
+        notification request for this object, and who are in the subset list will get notified. Unless you specify the 
         -force flag, in which case everybody in the subset list will get notified, whether they requested the notification
         or not. In this case, the 'default_request_data' will be used for these new requests.
 
@@ -330,7 +330,7 @@
                 # Create the notification
                 package_instantiate_object -extra_vars $extra_vars notification
 
-                # teadams@alum.mit.edu - pl/sql has a 32K limit for paramaters.
+                # teadams@alum.mit.edu - pl/sql has a 32K limit for parameters.
 
                 # Updating the clob columns directly
                 # to avoid this limitation.
Index: openacs-4/packages/notifications/www/request-new-2.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/www/request-new-2.tcl,v
diff -u -r1.5 -r1.6
--- openacs-4/packages/notifications/www/request-new-2.tcl	7 Aug 2017 23:48:13 -0000	1.5
+++ openacs-4/packages/notifications/www/request-new-2.tcl	28 Mar 2018 20:26:52 -0000	1.6
@@ -14,7 +14,7 @@
 
 set user_id [ad_conn user_id]
 
-# Check that the object can be subcribed to
+# Check that the object can be subscribed to
 notification::security::require_notify_object -object_id $object_id
 
 # Add the request
@@ -27,8 +27,8 @@
 
 ad_returnredirect $return_url
 
-        
 
+
 # Local variables:
 #    mode: tcl
 #    tcl-indent-level: 4
Index: openacs-4/packages/notifications/www/request-new.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/www/request-new.tcl,v
diff -u -r1.13 -r1.14
--- openacs-4/packages/notifications/www/request-new.tcl	7 Aug 2017 23:48:13 -0000	1.13
+++ openacs-4/packages/notifications/www/request-new.tcl	28 Mar 2018 20:26:52 -0000	1.14
@@ -14,7 +14,7 @@
 
 set user_id [auth::require_login]
 
-# Check that the object can be subcribed to
+# Check that the object can be subscribed to
 notification::security::require_notify_object -object_id $object_id
 
 set doc(title) [_ notifications.Request_Notification]