Return-Path: X-Original-To: apmail-deltacloud-commits-archive@www.apache.org Delivered-To: apmail-deltacloud-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6F816DA33 for ; Mon, 11 Feb 2013 12:47:33 +0000 (UTC) Received: (qmail 99383 invoked by uid 500); 11 Feb 2013 12:47:33 -0000 Delivered-To: apmail-deltacloud-commits-archive@deltacloud.apache.org Received: (qmail 99322 invoked by uid 500); 11 Feb 2013 12:47:32 -0000 Mailing-List: contact commits-help@deltacloud.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@deltacloud.apache.org Delivered-To: mailing list commits@deltacloud.apache.org Received: (qmail 99298 invoked by uid 99); 11 Feb 2013 12:47:31 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Feb 2013 12:47:31 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id AA6BC3C7F1; Mon, 11 Feb 2013 12:47:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dkoper@apache.org To: commits@deltacloud.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [1/2] git commit: CIMI: fixing a few typos in comments Message-Id: <20130211124731.AA6BC3C7F1@tyr.zones.apache.org> Date: Mon, 11 Feb 2013 12:47:31 +0000 (UTC) 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 Authored: Mon Feb 11 11:15:41 2013 +1100 Committer: Dies Koper 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.