diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-08-09 21:49:03 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-09 21:49:03 +0300 |
| commit | 84a98cedfb3efac93aef1058730bf1e6ca585fcc (patch) | |
| tree | 963321353bc7eaec9b5a9c21a7d5ae7d60f6a5c8 | |
| parent | 0ddf7da4458a53a67b6f118675c00a534cd126e6 (diff) | |
| parent | 206845372806b8cde7722fca5d039a28224ea437 (diff) | |
Merge pull request #6877 from opensourcerouting/misc-docstring-fix
bgpd,lib: add missing doc strings
| -rw-r--r-- | bgpd/bgp_evpn_vty.c | 1 | ||||
| -rw-r--r-- | lib/routemap_cli.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/bgpd/bgp_evpn_vty.c b/bgpd/bgp_evpn_vty.c index 3a198b20f6..15ecffdc72 100644 --- a/bgpd/bgp_evpn_vty.c +++ b/bgpd/bgp_evpn_vty.c @@ -4002,6 +4002,7 @@ DEFUN(show_bgp_l2vpn_evpn_route, "Display Detailed Information\n" "Specify Route type\n" "EAD (Type-1) route\n" + "EAD (Type-1) route\n" "MAC-IP (Type-2) route\n" "MAC-IP (Type-2) route\n" "Multicast (Type-3) route\n" diff --git a/lib/routemap_cli.c b/lib/routemap_cli.c index 7fa759252b..836be38113 100644 --- a/lib/routemap_cli.c +++ b/lib/routemap_cli.c @@ -951,7 +951,8 @@ DEFPY_YANG( no_rmap_call, no_rmap_call_cmd, "no call [NAME]", NO_STR - "Jump to another Route-Map after match+set\n") + "Jump to another Route-Map after match+set\n" + "Target route-map name\n") { nb_cli_enqueue_change(vty, "./call", NB_OP_DESTROY, NULL); |
