cmdline - usage: persistent and instrument
diff --git a/cmdline.c b/cmdline.c
index f613ad9..226a70a 100644
--- a/cmdline.c
+++ b/cmdline.c
@@ -81,7 +81,7 @@
     LOG_HELP_BOLD("  " PROG_NAME " -f input_dir -C -- /usr/bin/tiffinfo -D " _HF_FILE_PLACEHOLDER);
     LOG_HELP(" Use compile-time instrumentation (libhfuzz/instrument.c):");
     LOG_HELP_BOLD("  " PROG_NAME " -f input_dir -z -- /usr/bin/tiffinfo -D " _HF_FILE_PLACEHOLDER);
-    LOG_HELP(" Use persistent mode (libhfuzz/libhfuzz.a):");
+    LOG_HELP(" Use persistent mode (libhfuzz/persistent.c):");
     LOG_HELP_BOLD("  " PROG_NAME " -f input_dir -P -- /usr/bin/tiffinfo_persistent");
 #if defined(_HF_ARCH_LINUX)
     LOG_HELP(" Run the binary over a dynamic file, maximize total no. of instructions:");
@@ -259,9 +259,9 @@
         {{"env", required_argument, NULL, 'E'}, "Pass this environment variable, can be used multiple times"},
         {{"save_all", no_argument, NULL, 'u'}, "Save all test-cases (not only the unique ones) by appending the current time-stamp to the filenames"},
         {{"sancov", no_argument, NULL, 'C'}, "Enable sanitizer coverage feedback"},
-        {{"instr", no_argument, NULL, 'z'}, "Enable compile-time instrumentation (link with libraries/libhfuzz.a)"},
+        {{"instrument", no_argument, NULL, 'z'}, "Enable compile-time instrumentation (link with libraries/instrument.a)"},
         {{"msan_report_umrs", no_argument, NULL, 0x102}, "Report MSAN's UMRS (uninitialized memory access)"},
-        {{"persistent", no_argument, NULL, 'P'}, "Enable persistent fuzzing (link with libraries/persistent.mode.main.o)"},
+        {{"persistent", no_argument, NULL, 'P'}, "Enable persistent fuzzing (link with libraries/persistent.c"},
 
 #if defined(_HF_ARCH_LINUX)
         {{"linux_pid", required_argument, NULL, 'p'}, "Attach to a pid (and its thread group)"},