From b225ab42aa6a185034b7a7e00d0e95d915da05c2 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sat, 17 Dec 2022 17:40:07 +0100 Subject: [PATCH] builtin: fix typo in builtin description --- src/builtin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtin.cpp b/src/builtin.cpp index 8b8a0cba8..91276b9b7 100644 --- a/src/builtin.cpp +++ b/src/builtin.cpp @@ -355,7 +355,7 @@ static constexpr builtin_data_t builtin_datas[] = { {L":", &builtin_true, N_(L"Return a successful result")}, {L"[", &builtin_test, N_(L"Test a condition")}, {L"_", &builtin_gettext, N_(L"Translate a string")}, - {L"abbr", &builtin_abbr, N_(L"Manage generics")}, + {L"abbr", &builtin_abbr, N_(L"Manage abbreviations")}, {L"and", &builtin_generic, N_(L"Run command if last command succeeded")}, {L"argparse", &builtin_argparse, N_(L"Parse options in fish script")}, {L"begin", &builtin_generic, N_(L"Create a block of code")},