Skip to content

Commit

Permalink
Fix missing parameter in example (#1172)
Browse files Browse the repository at this point in the history
Co-authored-by: Joe Spencer <js.developer.undefined@gmail.com>
  • Loading branch information
dj95 and jsdevel authored Mar 18, 2022
1 parent 52a280e commit 99832a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ GitHub issues have been disabled to focus on pull requests. ([#731](https://gith
var url = 'http://example.com/wsdl?wsdl';
var args = {name: 'value'};

soap.createClient(url, function(err, client) {
soap.createClient(url, {}, function(err, client) {
client.MyFunction(args, function(err, result) {
console.log(result);
});
Expand Down

0 comments on commit 99832a1

Please sign in to comment.