Skip to content

Commit 632901d

Browse files
committed
upd
1 parent f4b25e7 commit 632901d

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/default-lexical-scope.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ The topmost scope defines a `Temporal` property, which is an alias to `shock.tem
2222

2323
The following names and imports are provided implicitly when targetting the Jet Engine.
2424

25-
### jet.**
25+
### jet.\*\*
2626

2727
The topmost scope imports `jet.**`, so that the Jet Engine APIs are made available globally.
2828

29-
### fuse
29+
### Fuse
3030

31-
The topmost scope defines a `fuse` property, which is an alias to a package recursive import of `jetx.fuse.**`, used for the creating UI components using Fuse.
31+
The topmost scope defines a `Fuse` property, which is an alias to a package recursive import of `jetx.fuse.**`, used for the creating UI components using Fuse.

src/overview/xml-capabilities/jet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ package com.fun.components {
5858

5959
#### Linking style sheets in custom components
6060

61-
For a component to support `s:` attributes, it simply needs to support a `stylesheet : [fuse::StyleSheet]` parameter.
61+
For a component to support `s:` attributes, it simply needs to support a `stylesheet : [Fuse::StyleSheet]` parameter.
6262

63-
- When a `s:link` attribute is given a `[fuse::StyleSheet]`, it will not consume the given `s:` parameters and will instead add the `fuse::StyleSheet`s directly, in attribute order.
63+
- When a `s:link` attribute is given a `[Fuse::StyleSheet]`, it will not consume the given `s:` parameters and will instead add the `Fuse::StyleSheet`s directly, in attribute order.
6464
- The `s:link` attribute may appear multiple times.
6565

6666
```
@@ -69,7 +69,7 @@ package com.fun.components {
6969
public function CustomComponent({
7070
stylesheet
7171
}: {
72-
stylesheet : [fuse::StyleSheet],
72+
stylesheet : [Fuse::StyleSheet],
7373
}) {
7474
//
7575

0 commit comments

Comments
 (0)