diff options
author | Ramax Lo <ramaxlo@gmail.com> | 2019-09-30 15:10:56 +0800 |
---|---|---|
committer | Ramax Lo <ramaxlo@gmail.com> | 2019-09-30 16:15:34 +0800 |
commit | cfcd0f040b3dfd2457fbe7f88c4df3f3c5683249 (patch) | |
tree | 2ceaa6a906d997a59d6b34609e94771db1d4c8e6 /docs/contributing/coding_guidelines.rst | |
parent | 076f0f139d6b1b63def3c3234a839eb82ca7306d (diff) | |
download | vyos-documentation-cfcd0f040b3dfd2457fbe7f88c4df3f3c5683249.tar.gz vyos-documentation-cfcd0f040b3dfd2457fbe7f88c4df3f3c5683249.zip |
Fix typos in pages
Diffstat (limited to 'docs/contributing/coding_guidelines.rst')
-rw-r--r-- | docs/contributing/coding_guidelines.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/contributing/coding_guidelines.rst b/docs/contributing/coding_guidelines.rst index ff863d61..9c996518 100644 --- a/docs/contributing/coding_guidelines.rst +++ b/docs/contributing/coding_guidelines.rst @@ -54,7 +54,7 @@ The **get_config()** function must convert the VyOS config to an abstract intern representation. No other function is allowed to call ``vyos.config.Config`` object methods directly. The rationale for it is that when config reads are mixed with other logic, it's very hard to change the config syntax since you need to weed -out every occurence of the old syntax. If syntax-specific code is confined to a +out every occurrence of the old syntax. If syntax-specific code is confined to a single function, the rest of the code can be left untouched as long as the internal representation remains compatible. @@ -75,7 +75,7 @@ The **apply()** function applies the generated configuration to the live system. It should use non-disruptive reload whenever possible. It may execute disruptive operations such as daemon process restart if a particular component does not support non-disruptive reload, or when the expected service degradation is minimal -(for example, in case of auxillary services such as LLDPd). In case of high impact +(for example, in case of auxiliary services such as LLDPd). In case of high impact services such as VPN daemon and routing protocols, when non-disruptive reload is supported for some but not all types of configuration changes, scripts authors should make effort to determine if a configuration change can be done in a |