From 81c46183fd0c0e4bce88ad5ae85f76515c89bfad Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Sat, 22 Jan 2022 21:18:24 -0800 Subject: [PATCH] breakpoint: shorter --- src/builtin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtin.cpp b/src/builtin.cpp index ced3fd1ec..291cc7bdb 100644 --- a/src/builtin.cpp +++ b/src/builtin.cpp @@ -365,7 +365,7 @@ static constexpr builtin_data_t builtin_datas[] = { {L"bind", &builtin_bind, N_(L"Handle fish key bindings")}, {L"block", &builtin_block, N_(L"Temporarily block delivery of events")}, {L"break", &builtin_break_continue, N_(L"Stop the innermost loop")}, - {L"breakpoint", &builtin_breakpoint, N_(L"Halt execution and start interactive debug prompt")}, + {L"breakpoint", &builtin_breakpoint, N_(L"Halt execution and start debug prompt")}, {L"builtin", &builtin_builtin, N_(L"Run a builtin command instead of a function")}, {L"case", &builtin_generic, N_(L"Conditionally execute a block of commands")}, {L"cd", &builtin_cd, N_(L"Change working directory")},