Index: openacs-4/packages/acs-tcl/tcl/test/memoizing-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/test/memoizing-procs.tcl,v diff -u -r1.4 -r1.4.2.1 --- openacs-4/packages/acs-tcl/tcl/test/memoizing-procs.tcl 25 Jul 2018 13:42:48 -0000 1.4 +++ openacs-4/packages/acs-tcl/tcl/test/memoizing-procs.tcl 3 Jul 2020 07:27:29 -0000 1.4.2.1 @@ -20,10 +20,10 @@ ad_proc -private memoizing_procs_test::return_upper_case_text { {-txt:required} } { - Test proc that returns a string in upper case + Test proc that returns a string in uppercase } { set response $txt - append response " in upper case is " + append response " in uppercase is " append response [string toupper $txt] return $response }