diff options
author | Sebastian Weber <s@web3r.de> | 2024-01-17 21:51:02 +0100 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-01-19 20:07:30 +0000 |
commit | b73c97e995708d2bf2740f45e5ea2e112a9bff5d (patch) | |
tree | 2edfc6573ebe9649285184495f8987a34d9c1b44 /docs/_ext | |
parent | 244e576b3db157c3094c5d46257cdf785f93cb70 (diff) | |
download | vyos-documentation-b73c97e995708d2bf2740f45e5ea2e112a9bff5d.tar.gz vyos-documentation-b73c97e995708d2bf2740f45e5ea2e112a9bff5d.zip |
Fix "errror"s in docs/_ext
(cherry picked from commit 125c03f39c74fee4bf60610c74ff9b61e65a0541)
Diffstat (limited to 'docs/_ext')
-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 |