diff --git a/libisofs/buffer.c b/libisofs/buffer.c index 61de688..f510551 100644 --- a/libisofs/buffer.c +++ b/libisofs/buffer.c @@ -196,7 +196,7 @@ int iso_ring_buffer_write(IsoRingBuffer *buf, uint8_t *data, size_t count) /** * Read count bytes from the buffer into dest. It blocks until the desired - * bytes has been read. If the writer finishes before outputting enought + * bytes has been read. If the writer finishes before outputting enough * bytes, 0 (EOF) is returned, the number of bytes already read remains * unknown. * diff --git a/libisofs/ecma119.h b/libisofs/ecma119.h index 5b4ea81..ada37b5 100644 --- a/libisofs/ecma119.h +++ b/libisofs/ecma119.h @@ -477,7 +477,7 @@ struct iso_write_opts { int efi_boot_part_flag; /* Disk file paths of prepared images which shall be appended - after the ISO image and described by partiton table entries in a MBR. + after the ISO image and described by partition table entries in a MBR. NULL means unused. */ char *appended_partitions[ISO_MAX_PARTITIONS]; diff --git a/libisofs/libisofs.h b/libisofs/libisofs.h index 04a21c4..825db9e 100644 --- a/libisofs/libisofs.h +++ b/libisofs/libisofs.h @@ -3856,7 +3856,7 @@ int el_torito_get_boot_media_type(ElToritoBootImage *bootimg, * * The Platform ID gets written into the boot catalog at byte 1 of the * Validation Entry, or at byte 1 of a Section Header Entry. - * If Platform ID and ID String of two consequtive bootimages are the same + * If Platform ID and ID String of two consecutive bootimages are the same * * @param bootimg * The image to manipulate. @@ -4769,7 +4769,7 @@ int iso_image_get_alpha_boot(IsoImage *img, char **boot_loader_path); void iso_node_ref(IsoNode *node); /** - * Decrements the reference couting of the given node. + * Decrements the reference counting of the given node. * If it reach 0, the node is free, and, if the node is a directory, * its children will be unref() too. * @@ -6148,7 +6148,7 @@ int iso_tree_get_ignore_special(IsoImage *image); * * the directory /home/user/data/private won't be added to image. * - * However, if you explicity add a deeper dir, it won't be excluded. i.e., + * However, if you explicitly add a deeper dir, it won't be excluded. i.e., * in the following example. * * iso_tree_add_exclude(image, "/home/user/data"); diff --git a/libisofs/system_area.c b/libisofs/system_area.c index 3e55401..2351851 100644 --- a/libisofs/system_area.c +++ b/libisofs/system_area.c @@ -2085,7 +2085,7 @@ int iso_write_system_area(Ecma119Image *t, uint8_t *buf) if (ret < 0) return ret; } else if (t->opts->partition_offset == 0) { - /* Re-write partion entry 1 : start at 0, type Linux */ + /* Re-write partition entry 1 : start at 0, type Linux */ blk = ((uint64_t) img_blocks) * 4 - t->post_iso_part_pad / 512; part_type = 0x83; if (t->opts->iso_mbr_part_type >= 0 &&