From a70c672d6ae74cccd5a3c652c833256afbaa181b Mon Sep 17 00:00:00 2001 From: Mattias Holmqvist Date: Fri, 29 Apr 2011 10:59:05 +0200 Subject: [PATCH] Cleaned up fn docs for create-node and create-nodes. Removing references to implicit compute service since it's been removed. --- compute/src/main/clojure/org/jclouds/compute2.clj | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/compute/src/main/clojure/org/jclouds/compute2.clj b/compute/src/main/clojure/org/jclouds/compute2.clj index 637bddf175..e12fcbe549 100644 --- a/compute/src/main/clojure/org/jclouds/compute2.clj +++ b/compute/src/main/clojure/org/jclouds/compute2.clj @@ -124,17 +124,10 @@ (defn create-nodes "Create the specified number of nodes using the default or specified template. - ;; Simplest way to add 2 small linux nodes to the group webserver is to run (create-nodes \"webserver\" 2 compute) - - ;; which is the same as wrapping the create-nodes command with an implicit - ;; compute service. ;; Note that this will actually add another 2 nodes to the set called - ;; \"webserver\" - - TODO: Examples - " + ;; \"webserver\"" ([group count compute] (create-nodes group count (default-template compute) compute)) @@ -148,12 +141,8 @@ ;; simplest way to add a small linux node to the group webserver is to run (create-node \"webserver\" compute) - ;; which is the same as wrapping the create-node command with an implicit compute - ;; service. ;; Note that this will actually add another node to the set called - ;; \"webserver\" - TODO: Examples - " + ;; \"webserver\"" ([group compute] (create-node group compute (default-template compute))) ([group compute template]