From 04682e7f83a41fd5025b08c99d26e11b4e05a132 Mon Sep 17 00:00:00 2001 From: Gor Martsen Date: Wed, 13 Jul 2016 19:34:46 -0400 Subject: [PATCH 1/3] Fix documentation error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d4374a29971..e46b6e5f52e 100644 --- a/README.md +++ b/README.md @@ -391,7 +391,7 @@ var name = 'ubuntu-http'; zone.createVM(name, { os: 'ubuntu' }, function(err, vm, operation) { // `operation` lets you check the status of long-running tasks. - operation.onComplete(function(err, metadata) { + operation.on("complete", function(err, metadata) { if (!err) { // Virtual machine created! } From 496cd7330c92b9346d67070112f3590662187a94 Mon Sep 17 00:00:00 2001 From: Gor Martsen Date: Wed, 13 Jul 2016 19:38:05 -0400 Subject: [PATCH 2/3] Update contributors list --- CONTRIBUTORS | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 576f30215ab..b14cbe5ad60 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -15,6 +15,7 @@ Anand Suresh Ben Stahl Brett Bergmann Burcu Dogan +Gor Martsen Hector Rovira Ido Shamun Jesse Friedman From 74d1233729b58f3e659edf2da4fa375837e5ffbe Mon Sep 17 00:00:00 2001 From: Gor Martsen Date: Wed, 13 Jul 2016 20:00:25 -0400 Subject: [PATCH 3/3] Single quotes changes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e46b6e5f52e..9a39542aa47 100644 --- a/README.md +++ b/README.md @@ -391,7 +391,7 @@ var name = 'ubuntu-http'; zone.createVM(name, { os: 'ubuntu' }, function(err, vm, operation) { // `operation` lets you check the status of long-running tasks. - operation.on("complete", function(err, metadata) { + operation.on('complete', function(err, metadata) { if (!err) { // Virtual machine created! }