summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjetil Ørbekk <kjetil.orbekk@gmail.com>2012-03-02 16:55:29 +0100
committerKjetil Ørbekk <kjetil.orbekk@gmail.com>2012-03-02 16:55:29 +0100
commit1e15feea55e359bd1bdc3b776cea6b50cd001ede (patch)
treee313896be9a351a21962802803f20d5a5090034f
parentab9fadb6836737b0ec4f42fa1a0197ba9359d251 (diff)
Improve code example.
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index cd5ffe2..d3de74d 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ try {
VariableFactory variableFactory = client.createVariableFactory();
Variable<String> myVariable = variableFactory.createString("MyVariable");
- // Set the variable.
+ // Set the variable. It is automatically distributed to your other devices.
myVariable.set("Hello, Same!");
// Run update() to get the most recent version.