Index: openacs-4/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl,v diff -u -r1.61 -r1.62 --- openacs-4/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl 19 Jul 2018 12:17:45 -0000 1.61 +++ openacs-4/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl 25 Jul 2018 12:55:01 -0000 1.62 @@ -1040,13 +1040,14 @@ type args } { - Calls method_name for the type of object_id with object_id as the - first arg, and the remaining args are the remainder of the args to - method_name. Example ad_call_method method1 foo bar baz calls the method1 associated with the type of foo, with foo bar and baz - as the 3 arguments. + Calls method_name with the type as the first arg, and the remaining args are + the remainder of the args to method_name. + Example: "ad_dispatch method1 foo bar baz" calls the method1 associated with + the type foo, with foo bar and baz as the 3 arguments. + @param method_name method name - @param object_id the target, it is the first arg to the method + @param type associated type @param args the remaining arguments } { return [ad_apply ${method_name}__$type $args]