diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-10-30 11:14:58 -0400 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-11-15 07:18:59 +0000 |
commit | 513a8ffd88eef6cc8597989ce7163bae2dac1caf (patch) | |
tree | f6dac7a806f6f8ee3c4638c3eb1ff05d3a22d0a8 | |
parent | 8ef3741a27d97d26361b74f034fc05519763adbe (diff) |
vlib: Trivial - fix typo in short help
Type: fix
Change-Id: Ifada594088984291ce2e79da0bbbbd1f500640c9
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
(cherry picked from commit 43d8cf6fad25ed8d53be38f824739c59a3aff716)
-rw-r--r-- | src/vlib/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vlib/log.c b/src/vlib/log.c index 9fc0ee5c35b..b11d0815aef 100644 --- a/src/vlib/log.c +++ b/src/vlib/log.c @@ -491,7 +491,7 @@ set_log_class (vlib_main_t * vm, /* *INDENT-OFF* */ VLIB_CLI_COMMAND (cli_set_log, static) = { .path = "set logging class", - .short_help = "set loggging class <class> [rate-limit <int>] " + .short_help = "set logging class <class> [rate-limit <int>] " "[level <level>] [syslog-level <level>]", .function = set_log_class, }; |