Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Commit

Permalink
fixes typo in the rpc example
Browse files Browse the repository at this point in the history
rpc.helloWorld(1,2,3, function(response){
        // here we can do something with the return value from `helloWorld`
    }, function(errorObj){
        // here we can react to a possible error
    }; <== forgot to close the parenthesis
  • Loading branch information
seanfeld committed Oct 21, 2014
1 parent ad2f356 commit 109a547
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -133,7 +133,7 @@ Call the methods like this
// here we can do something with the return value from `helloWorld`
}, function(errorObj){
// here we can react to a possible error
};
});
```

And this is what's needed for the *provider*
Expand Down

0 comments on commit 109a547

Please sign in to comment.