diff --git a/src/fw/applib/graphics/gbitmap.c b/src/fw/applib/graphics/gbitmap.c index 781bfba5..b2bbb89a 100644 --- a/src/fw/applib/graphics/gbitmap.c +++ b/src/fw/applib/graphics/gbitmap.c @@ -145,7 +145,7 @@ void gbitmap_init_with_data(GBitmap *bitmap, const uint8_t *data) { bitmap->info.is_bitmap_heap_allocated = false; // Note that our container contains values for the origin, but we want to ignore them. - // This is because orginally we just serialized GBitmap to disk, + // This is because originally we just serialized GBitmap to disk, // but these fields don't really make sense for static images. // These origin fields are only used when reusing a byte buffer in a sub bitmap. // This allows us to have a shallow copy of a portion of a parent bitmap. diff --git a/src/fw/services/normal/filesystem/pfs.h b/src/fw/services/normal/filesystem/pfs.h index 30c95e36..d4ba5eb9 100644 --- a/src/fw/services/normal/filesystem/pfs.h +++ b/src/fw/services/normal/filesystem/pfs.h @@ -89,7 +89,7 @@ typedef struct { //! committed until the pfs_close is called. Until this time, pfs_open of the //! 'name' will return a hdl to the original file. This way there is always a //! valid version of the file which can be read & the caller can copy parts -//! of the orginal file in hunks rather than allocating a lot of RAM. +//! of the original file in hunks rather than allocating a lot of RAM. //! //! OP_FLAG_SKIP_HDR_CRC_CHECK - For files which are not accessed frequently, //! it is a good idea to sanity check the on-flash header CRCs to make sure