Merge "Fix grammar errors"

This commit is contained in:
Zuul
2018-02-23 05:48:54 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -337,7 +337,7 @@ class ModelBuilder(object):
Create an instance node for the graph using nova and the
`server` nova object.
:param instance: Nova VM object.
:return: A instance node for the graph.
:return: An instance node for the graph.
"""
flavor = instance.flavor
instance_attributes = {

View File

@@ -29,7 +29,7 @@ class InstanceState(enum.Enum):
STOPPED = 'stopped' # Instance is shut off, the disk image is still there.
RESCUED = 'rescued' # A rescue image is running with the original image
# attached.
RESIZED = 'resized' # a Instance with the new size is active.
RESIZED = 'resized' # an Instance with the new size is active.
SOFT_DELETED = 'soft-delete'
# still available to restore.