Index: openacs-4/packages/xml-rpc/tcl/xml-rpc-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xml-rpc/tcl/xml-rpc-procs.tcl,v diff -u -r1.11 -r1.12 --- openacs-4/packages/xml-rpc/tcl/xml-rpc-procs.tcl 17 Apr 2017 17:10:49 -0000 1.11 +++ openacs-4/packages/xml-rpc/tcl/xml-rpc-procs.tcl 31 Jan 2018 21:03:19 -0000 1.12 @@ -56,7 +56,7 @@ if {[ns_info name] eq "NaviServer"} { # # NaviServer provides a generic means to access the content, - # indepenent from the spooling configuration + # independent from the spooling configuration # set text [ns_getcontent -as_file false -binary false] } else { @@ -543,7 +543,7 @@ } set req_hdrs [ns_set create] - # headers necesary for a post and the form variables + # headers necessary for a post and the form variables ns_set put $req_hdrs Accept "*/*" ns_set put $req_hdrs User-Agent "[ns_info name]-Tcl/[ns_info version]" ns_set put $req_hdrs "Content-type" "text/xml" @@ -606,7 +606,7 @@ if { [xml_node_get_name $root] ne "methodResponse" } { set root_name [xml_node_get_name $root] xml_doc_free $doc - return -code error "xmlrpc::parse_response: invalid server reponse - root node is not methodResponse. it's $root_name" + return -code error "xmlrpc::parse_response: invalid server response - root node is not methodResponse. it's $root_name" } set node [xml_node_get_first_child $root]