removed lateral violation and combined it with priority violation in sysconfig_error.md
Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/commit/4bd1577b Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/4bd1577b Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/4bd1577b Branch: refs/heads/develop Commit: 4bd1577b4d811602cf1946e4e041bf618c4b1ed6 Parents: 803f33e Author: aditihilbert <[email protected]> Authored: Wed Jan 18 12:32:51 2017 -0800 Committer: aditihilbert <[email protected]> Committed: Wed Jan 18 12:32:51 2017 -0800 ---------------------------------------------------------------------- docs/os/modules/sysinitconfig/sysconfig_error.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/4bd1577b/docs/os/modules/sysinitconfig/sysconfig_error.md ---------------------------------------------------------------------- diff --git a/docs/os/modules/sysinitconfig/sysconfig_error.md b/docs/os/modules/sysinitconfig/sysconfig_error.md index e43e77d..68b5afe 100644 --- a/docs/os/modules/sysinitconfig/sysconfig_error.md +++ b/docs/os/modules/sysinitconfig/sysconfig_error.md @@ -25,9 +25,8 @@ override violations: * Ambiguity Violation - Two packages of the same priority override a setting with different values. And no higher priority package overrides the setting. -* Lateral Violation - A Lib package overrides a setting that another Lib package defines. * Priority Violation - A package overrides a setting defined by a package with higher or -equal priority (TODO: Add error message examples) +equal priority (TODO: Change error message to indicate a more general priority violation instead of only lateral overrides) ####Example: Ambiguity Violation Error Message @@ -69,9 +68,9 @@ syscfg.vals: ``` -####Example: Lateral Violation Error Message +####Example: Priority Violation Error Message -The following example shows the error message that newt outputs for a lateral violation: +The following example shows the error message that newt outputs for a lateral violation where a package tries to change the setting that was defined by another package at the same priority level: ```no-highlight
