Skip to content

Commit

Permalink
Fix valueWriterFn variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
hochhaus committed Jul 29, 2016
1 parent e7982e4 commit a217408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/map.js
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ jspb.Map.prototype.serializeBinary = function(
valueWriterFn.call(writer, 2, this.wrapEntry_(entry),
opt_valueWriterCallback);
} else {
valueWriterFn_.call(writer, 2, entry.value);
valueWriterFn.call(writer, 2, entry.value);
}
writer.endSubMessage();
}
Expand Down

0 comments on commit a217408

Please sign in to comment.