We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6517824 commit 6be59b8Copy full SHA for 6be59b8
1 file changed
src/overview/access-control.md
@@ -32,15 +32,23 @@ package com.company.runner.advanced {
32
Namespaces additionally apply to record types.
33
34
```
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,
+package com.business.product {
+ /**
+ * Flexible version control namespace.
+ */
+ public namespace Flexible = "http://business.com/product/flexible";
+
+ * Judgement version control namespace.
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],
52
};
53
}
54
0 commit comments