diff options
author | Sebastian Weber <s@web3r.de> | 2024-01-17 21:51:02 +0100 |
---|---|---|
committer | Sebastian Weber <s@web3r.de> | 2024-01-17 21:51:02 +0100 |
commit | 125c03f39c74fee4bf60610c74ff9b61e65a0541 (patch) | |
tree | e3aa6a5f5278e76caab506cf3fceb6ac101fd293 /docs | |
parent | 3b7d0667703cf918f6aaab4ae9b6abddb9d54982 (diff) | |
download | vyos-documentation-125c03f39c74fee4bf60610c74ff9b61e65a0541.tar.gz vyos-documentation-125c03f39c74fee4bf60610c74ff9b61e65a0541.zip |
Fix "errror"s in docs/_ext
Diffstat (limited to 'docs')
-rw-r--r-- | docs/_ext/vyos.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/_ext/vyos.py b/docs/_ext/vyos.py index fe0a258b..c1a96cd9 100644 --- a/docs/_ext/vyos.py +++ b/docs/_ext/vyos.py @@ -530,7 +530,7 @@ def strip_cmd(cmd, debug=False): if c == "]": appearance = appearance - 1 - # only if all [..] will be delete if appearance > 0 there is a syntax errror + # only if all [..] will be delete if appearance > 0 there is a syntax error if appearance == 0: cmd = cmd_new @@ -545,7 +545,7 @@ def strip_cmd(cmd, debug=False): if c == ">": appearance = appearance - 1 - # only if all <..> will be delete if appearance > 0 there is a syntax errror + # only if all <..> will be delete if appearance > 0 there is a syntax error if appearance == 0: cmd = cmd_new |