Skip to content

Commit 6be59b8

Browse files
committed
upd
1 parent 6517824 commit 6be59b8

1 file changed

Lines changed: 17 additions & 9 deletions

File tree

src/overview/access-control.md

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,23 @@ package com.company.runner.advanced {
3232
Namespaces additionally apply to record types.
3333

3434
```
35-
package com.company.products {
36-
//
37-
public namespace English;
38-
public namespace Portuguese;
39-
40-
//
41-
public type Product = {
42-
English::name : String,
43-
Portuguese::name : String,
35+
package com.business.product {
36+
/**
37+
* Flexible version control namespace.
38+
*/
39+
public namespace Flexible = "http://business.com/product/flexible";
40+
41+
/**
42+
* Judgement version control namespace.
43+
*/
44+
public namespace Judgement = "http://business.com/product/judgement";
45+
46+
/**
47+
* Pair.
48+
*/
49+
public type Pair = {
50+
Flexible::strength : [decimal],
51+
Judgement::strength : [decimal],
4452
};
4553
}
4654
```

0 commit comments

Comments
 (0)