summaryrefslogtreecommitdiff
path: root/doc/developer
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas.abraitis@gmail.com>2020-03-10 07:36:58 +0200
committerGitHub <noreply@github.com>2020-03-10 07:36:58 +0200
commit34fdf55d7cc77f73f5ac88a411b6e2b8cbfdfb6f (patch)
tree1bbbfaa47d9e8a6abe68ea51bd5d47b62e8d5021 /doc/developer
parentb354d41bd33718d2c87d2ca4e07e3f5eec9e3164 (diff)
parent455699760f86e3bdc27ca62f091f463643b86ab0 (diff)
Merge pull request #5949 from qlyoung/doc-fix-cli-source-references-order
doc: CLI source references backwards
Diffstat (limited to 'doc/developer')
-rw-r--r--doc/developer/cli.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer/cli.rst b/doc/developer/cli.rst
index 12fcb7a325..edabe61d92 100644
--- a/doc/developer/cli.rst
+++ b/doc/developer/cli.rst
@@ -101,7 +101,7 @@ Definition Grammar
FRR uses its own grammar for defining CLI commands. The grammar draws from
syntax commonly seen in \*nix manpages and should be fairly intuitive. The
parser is implemented in Bison and the lexer in Flex. These may be found in
-``lib/command_lex.l`` and ``lib/command_parse.y``, respectively.
+``lib/command_parse.y`` and ``lib/command_lex.l``, respectively.
**ProTip**: if you define a new command and find that the parser is
throwing syntax or other errors, the parser is the last place you want