Skip to content

Commit ff99b80

Browse files
committed
[fix] Small typo
1 parent a041acd commit ff99b80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/app_storage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ uint32_t app_storage_get_size(void);
7575
uint16_t app_storage_get_struct_version(void);
7676
uint16_t app_storage_get_properties(void);
7777
uint32_t app_storage_get_data_version(void);
78-
bool app_storage_is_initalized(void);
78+
bool app_storage_is_initialized(void);
7979
void app_storage_set_data_version(uint32_t data_version);
8080

8181
#endif // HAVE_BOLOS

lib_standard_app/app_storage.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ uint16_t app_storage_get_properties(void)
8282
/**
8383
* @brief ensure app storage struct is initialized
8484
*/
85-
bool app_storage_is_initalized(void)
85+
bool app_storage_is_initialized(void)
8686
{
8787
if (memcmp((void *) N_app_storage.header.tag, "NVRA", 4)) {
8888
return false;

0 commit comments

Comments
 (0)