Index: openacs-4/packages/acs-tcl/tcl/acs-cache-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/acs-cache-procs.tcl,v diff -u -r1.10.2.38 -r1.10.2.39 --- openacs-4/packages/acs-tcl/tcl/acs-cache-procs.tcl 29 Dec 2022 12:54:06 -0000 1.10.2.38 +++ openacs-4/packages/acs-tcl/tcl/acs-cache-procs.tcl 27 Feb 2023 17:57:44 -0000 1.10.2.39 @@ -587,7 +587,7 @@ provided cache exists, then use it for caching, otherwise perform uncalled call. This function is made intentionally private, since this should only be required during - bootstraping. It does not make sense to wrap arbitrary caching + bootstrapping. It does not make sense to wrap arbitrary caching calls with this function. } { Index: openacs-4/packages/acs-tcl/tcl/ad-functional-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/ad-functional-procs.tcl,v diff -u -r1.10.2.6 -r1.10.2.7 --- openacs-4/packages/acs-tcl/tcl/ad-functional-procs.tcl 22 Feb 2021 16:12:38 -0000 1.10.2.6 +++ openacs-4/packages/acs-tcl/tcl/ad-functional-procs.tcl 27 Feb 2023 17:57:44 -0000 1.10.2.7 @@ -632,7 +632,7 @@ # "Sandra Bullock" "Catherine Zeta-Jones" "Nicole Kidman" -ad_proc -public transpose {lists} "tranposes a matrix (a list of lists)" { +ad_proc -public transpose {lists} "transposes a matrix (a list of lists)" { set num_lists [llength $lists] if {!$num_lists} { return "" } for {set i 0} {$i<$num_lists} {incr i} { Index: openacs-4/packages/acs-tcl/tcl/cluster-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/Attic/cluster-procs.tcl,v diff -u -r1.1.2.6 -r1.1.2.7 --- openacs-4/packages/acs-tcl/tcl/cluster-procs.tcl 8 Feb 2023 18:35:05 -0000 1.1.2.6 +++ openacs-4/packages/acs-tcl/tcl/cluster-procs.tcl 27 Feb 2023 17:57:44 -0000 1.1.2.7 @@ -359,7 +359,7 @@ :public method last_contact {location} { # - # Return the millseconds since the last contact + # Return the milliseconds since the last contact # with the denoted server. If there is no data available, # the return values is empty. # @@ -369,7 +369,7 @@ } :public method last_request {location} { # - # Return the millseconds since the last request from the + # Return the milliseconds since the last request from the # denoted server. If there is no data available, the # return values is empty. # @@ -444,7 +444,7 @@ :public method is_canonical_server {location} { # - # Check, if provided location belongs to the the canonical + # Check, if provided location belongs to the canonical # server specs. The canonical server might listen on # multiple protocols, IP addresses and ports. # Index: openacs-4/packages/acs-tcl/tcl/security-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/security-procs.tcl,v diff -u -r1.126.2.84 -r1.126.2.85 --- openacs-4/packages/acs-tcl/tcl/security-procs.tcl 27 Feb 2023 17:47:17 -0000 1.126.2.84 +++ openacs-4/packages/acs-tcl/tcl/security-procs.tcl 27 Feb 2023 17:57:44 -0000 1.126.2.85 @@ -3087,7 +3087,7 @@ security::csp::require connect-src 'self' # # Some browser (safari, chrome) need "font-src data:", maybe - # for plugins or diffent font settings. Seems safe enough. + # for plugins or different font settings. Seems safe enough. # security::csp::require font-src data: Index: openacs-4/packages/acs-tcl/tcl/whos-online-init.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/whos-online-init.tcl,v diff -u -r1.2 -r1.2.2.1 --- openacs-4/packages/acs-tcl/tcl/whos-online-init.tcl 7 Aug 2017 23:48:00 -0000 1.2 +++ openacs-4/packages/acs-tcl/tcl/whos-online-init.tcl 27 Feb 2023 17:57:44 -0000 1.2.2.1 @@ -1,6 +1,6 @@ ad_library { - Initializes datastrctures for whos online. + Initializes data structures for who's online. @creation-date 03 October 2003 @cvs-id $Id$