From 468cc45f90757b15a05ae804699a29b45dd5246f Mon Sep 17 00:00:00 2001 From: RebornedBrain Date: Wed, 8 Oct 2025 16:26:48 +0300 Subject: [PATCH] Fix wrbl command tooltip (#4291) Co-authored-by: hedger --- applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c b/applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c index 0bfcffe3cd..99e51edcf9 100644 --- a/applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c +++ b/applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c @@ -59,7 +59,7 @@ const NfcCliKeyDescriptor wrbl_action_keys[] = { //mfu rdbl --block 0 -- data DEADBEEF const NfcCliActionDescriptor wrbl_action = { .name = "wrbl", - .description = "Read block from ultralight card", + .description = "Write block to ultralight card", .alloc = nfc_cli_mfu_wrbl_alloc_ctx, .free = nfc_cli_mfu_wrbl_free_ctx, .execute = nfc_cli_mfu_wrbl_execute,