Skip to content
Snippets Groups Projects
Commit 4a35faa5 authored by Nikos Skalkotos's avatar Nikos Skalkotos
Browse files

Fix minor typos

parent e36b5b14
No related branches found
No related tags found
No related merge requests found
......@@ -211,7 +211,7 @@ class BundleVolume(object):
# Add 10% just to be on the safe side
part_end = last.start + (new_size * 11) // 10
# Alighn to 2048
# Align to 2048
part_end = ((part_end + 2047) // 2048) * 2048
image_disk.setPartitionGeometry(
......
......@@ -34,7 +34,7 @@
from image_creator.os_type.unix import Unix, sysprep
class Hard(Unix):
class Hurd(Unix):
pass
# vim: set sta sts=4 shiftwidth=4 sw=4 et ai :
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment