aboutsummaryrefslogtreecommitdiffhomepage
path: root/js
diff options
context:
space:
mode:
authorGravatar Stefan Huber <sh@signalwerk.ch>2017-10-24 14:01:22 +0200
committerGravatar GitHub <noreply@github.com>2017-10-24 14:01:22 +0200
commit44daa59e53eb32d1dce6720da3ec5c6dadc7307e (patch)
treec14b5431e6b4049580f7ed9903c6e4d54f2b85cb /js
parentb189389e2f2ca01dd534a8e9ba3ac38ea45cdba6 (diff)
To be clear that we set a new variable
Diffstat (limited to 'js')
-rw-r--r--js/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/README.md b/js/README.md
index 24386dc7..ef0d4b19 100644
--- a/js/README.md
+++ b/js/README.md
@@ -158,7 +158,7 @@ idea of how the library generally works:
message.setPhoneNumbers(["800-555-1212", "800-555-0000"]);
// Serializes to a UInt8Array.
- bytes = message.serializeBinary();
+ var bytes = message.serializeBinary();
var message2 = MyMessage.deserializeBinary(bytes);