Skip to content

Commit

Permalink
Fix typo in NodeSDK docs
Browse files Browse the repository at this point in the history
Add missing parentheses in HFC sample.

Change-Id: I2cd54231e86eaa8861bf13b536119de9716a5352
Signed-off-by: Nao Nishijima <[email protected]>
  • Loading branch information
Nao Nishijima committed Sep 7, 2016
1 parent 8a19aba commit c22ee64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Setup/NodeSDK-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function handleUserRequest(userName, chaincodeID, fcn, args) {
});
// Listen for the 'complete' event.
tx.on('complete', function(results) {
console.log("completed invoke: %j",results;
console.log("completed invoke: %j",results);
});
// Listen for the 'error' event.
tx.on('error', function(err) {
Expand Down

0 comments on commit c22ee64

Please sign in to comment.