Skip to content

Commit 833700c

Browse files
author
Ian Sutton
committed
spelling
1 parent 73b1315 commit 833700c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

SoftLayer/CLI/block/convert.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Convert a dependent duplicate volume to an indepdent volume."""
1+
"""Convert a dependent duplicate volume to an independent volume."""
22
# :license: MIT, see LICENSE for more details.
33

44
import click
@@ -10,7 +10,7 @@
1010
@click.argument('volume_id')
1111
@environment.pass_env
1212
def cli(env, volume_id):
13-
"""Convert a dependent duplicate volume to an indepdent volume."""
13+
"""Convert a dependent duplicate volume to an independent volume."""
1414
block_manager = SoftLayer.BlockStorageManager(env.client)
1515
resp = block_manager.convert_dep_dupe(volume_id)
1616

SoftLayer/CLI/file/convert.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Convert a dependent duplicate volume to an indepdent volume."""
1+
"""Convert a dependent duplicate volume to an independent volume."""
22
# :license: MIT, see LICENSE for more details.
33

44
import click
@@ -10,7 +10,7 @@
1010
@click.argument('volume_id')
1111
@environment.pass_env
1212
def cli(env, volume_id):
13-
"""Convert a dependent duplicate volume to an indepdent volume."""
13+
"""Convert a dependent duplicate volume to an independent volume."""
1414
file_manager = SoftLayer.FileStorageManager(env.client)
1515
resp = file_manager.convert_dep_dupe(volume_id)
1616

SoftLayer/managers/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def refresh_dep_dupe(self, volume_id, snapshot_id):
424424
return self.client.call('Network_Storage', 'refreshDependentDuplicate', snapshot_id, id=volume_id)
425425

426426
def convert_dep_dupe(self, volume_id):
427-
"""Convert a dependent duplicate volume to an indepdent volume.
427+
"""Convert a dependent duplicate volume to an independent volume.
428428
429429
:param integer volume_id: The id of the volume.
430430
"""

0 commit comments

Comments
 (0)