added CR delimiters to if-feature

This commit is contained in:
Olof hagsand 2020-07-27 13:00:56 +02:00
parent f7b640810b
commit 918bf6223b
2 changed files with 23 additions and 12 deletions

View file

@ -77,17 +77,19 @@ module example{
type "string";
}
leaf m1{
if-feature "A and A1";
if-feature "A and
A1";
description "Enabled";
type "string";
}
leaf m2{
if-feature "A or A1";
if-feature "A or
A1";
description "Enabled";
type "string";
}
leaf m3{
if-feature "A and B";
if-feature "A and B";
description "Not enabled";
type "string";
}