Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
fixes #22
  • Loading branch information
shamrin committed Nov 21, 2024
1 parent 0b48286 commit 6ddce70
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/examples/advanced_create_instance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Advanced Create Instance
ssh_key_ids=ssh_keys_ids,
hostname='example',
description='large instance'
os_volumes={
os_volume={
"name": "Large OS volume",
"size": 95
})
Expand Down
2 changes: 1 addition & 1 deletion docs/source/examples/instances_and_volumes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Instances and Volumes
ssh_key_ids=ssh_keys,
hostname='example',
description='example instance',
os_volumes={
os_volume={
"name": "OS volume",
"size": 95
})
Expand Down
2 changes: 1 addition & 1 deletion examples/advanced_create_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
ssh_key_ids=ssh_keys_ids,
hostname='example',
description='large instance',
os_volumes={
os_volume={
"name": "Large OS volume",
"size": 95
})
Expand Down
2 changes: 1 addition & 1 deletion examples/instances_and_volumes.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
ssh_key_ids=ssh_keys,
hostname='example',
description='example instance',
os_volumes={
os_volume={
"name": "OS volume",
"size": 95
})
Expand Down

0 comments on commit 6ddce70

Please sign in to comment.