You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by dk...@apache.org on 2013/02/11 13:47:31 UTC

[1/2] git commit: CIMI: fixing a few typos in comments

CIMI: fixing a few typos in comments


Project: http://git-wip-us.apache.org/repos/asf/deltacloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltacloud/commit/a497e8c7
Tree: http://git-wip-us.apache.org/repos/asf/deltacloud/tree/a497e8c7
Diff: http://git-wip-us.apache.org/repos/asf/deltacloud/diff/a497e8c7

Branch: refs/heads/master
Commit: a497e8c77e3ea8102a28726bdcafcf608395a557
Parents: 91c891a
Author: Dies Koper <di...@fast.au.fujitsu.com>
Authored: Mon Feb 11 11:15:41 2013 +1100
Committer: Dies Koper <di...@fast.au.fujitsu.com>
Committed: Mon Feb 11 23:46:23 2013 +1100

----------------------------------------------------------------------
 server/lib/cimi/collections/addresses.rb |    2 +-
 server/lib/cimi/collections/machines.rb  |    2 +-
 server/lib/cimi/models/base.rb           |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/deltacloud/blob/a497e8c7/server/lib/cimi/collections/addresses.rb
----------------------------------------------------------------------
diff --git a/server/lib/cimi/collections/addresses.rb b/server/lib/cimi/collections/addresses.rb
index 9ea1764..a51e658 100644
--- a/server/lib/cimi/collections/addresses.rb
+++ b/server/lib/cimi/collections/addresses.rb
@@ -20,7 +20,7 @@ module CIMI::Collections
 
     collection :addresses do
 
-      description 'An Address represents an IP address, and its associated metdata, for a particular Network.'
+      description 'An Address represents an IP address, and its associated metadata, for a particular Network.'
 
       operation :index, :with_capability => :addresses do
         description 'List all Addresses in the AddressCollection'

http://git-wip-us.apache.org/repos/asf/deltacloud/blob/a497e8c7/server/lib/cimi/collections/machines.rb
----------------------------------------------------------------------
diff --git a/server/lib/cimi/collections/machines.rb b/server/lib/cimi/collections/machines.rb
index 5718f46..9a71bb1 100644
--- a/server/lib/cimi/collections/machines.rb
+++ b/server/lib/cimi/collections/machines.rb
@@ -85,7 +85,7 @@ module CIMI::Collections
       end
 
       action :restart, :with_capability => :reboot_instance do
-        description "Start specific machine."
+        description "Restart specific machine."
         param :id,          :string,    :required
         control do
           machine = Machine.find(params[:id], self)

http://git-wip-us.apache.org/repos/asf/deltacloud/blob/a497e8c7/server/lib/cimi/models/base.rb
----------------------------------------------------------------------
diff --git a/server/lib/cimi/models/base.rb b/server/lib/cimi/models/base.rb
index ac838a4..45c6da8 100644
--- a/server/lib/cimi/models/base.rb
+++ b/server/lib/cimi/models/base.rb
@@ -63,7 +63,7 @@ require_relative '../helpers/database_helper'
 #   [struct(name, opts, &block)]
 #     A structured subobject; the block defines the schema of the
 #     subobject. The +:content+ option can be used to specify the attribute
-#     that should receive the content of hte corresponding XML element
+#     that should receive the content of the corresponding XML element
 #   [array(name, opts, &block)]
 #     An array of structured subobjects; the block defines the schema of
 #     the subobjects.