diff --git a/src/bootloader/stage2/main.c b/src/bootloader/stage2/main.c
index d166409..21468e7 100644
--- a/src/bootloader/stage2/main.c
+++ b/src/bootloader/stage2/main.c
@@ -6,7 +6,7 @@ void _cdecl cstart_(uint16_t bootDrive)
     const char far* far_str = "far string";
 
     puts("Hello World from Stage 2!\r\n");
-    printf("Hello World from the printf libraryf!");
+    printf("Hello World from the printf library!");
     for (;;);
 
 }