Skip to content

Commit be74160

Browse files
committed
fix: Formatting issue.
1 parent d6fe7a5 commit be74160

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

rfcs/rfc-ember-integration-v2.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -302,18 +302,18 @@ Returning to our example above, the rewrite looks like this:
302302
Let's break that down:
303303

304304
1. `2 "nav" null "dropdown" null` - There are two blocks. "nav" is block #0. It is not substituted. "dropdown" is block #1; it is not substituted.
305-
2. `6 0 5 0 9 0 10 0 11 1 4 1 7` - The first number means there are `6` styles that might be applied.
306-
1. `0 0` - The `"nav"` block's `:scope` style has the id 0. This is style definition 0.
307-
2. `0 9` - The `"nav"` block's `:scope[type="side"]` style has the id 9. This is style definition 1.
308-
3. `0 10` - The `"nav"` block's `:scope[type="top"]` style has the id 10. This is style definition 2.
309-
4. `0 11` - The `"nav"` block's `:scope[type="hamburger"]` style has the id 11. This is style definition 3.
310-
5. `1 4` - The `"dropdown"` block's `.trigger` style has the id of 4. This is style definition 4.
311-
6. `1 7` - The `"dropdown"` block's `.trigger[disabled]` style has the id of 7. This is style definition 5.
305+
2. `6 0 0 0 9 0 10 0 11 1 4 1 7` - The first number means there are `6` styles that might be applied.
306+
1. `0 0` - The `"nav"` block's `:scope` style has the id 0. This is style definition 0.
307+
2. `0 9` - The `"nav"` block's `:scope[type="side"]` style has the id 9. This is style definition 1.
308+
3. `0 10` - The `"nav"` block's `:scope[type="top"]` style has the id 10. This is style definition 2.
309+
4. `0 11` - The `"nav"` block's `:scope[type="hamburger"]` style has the id 11. This is style definition 3.
310+
5. `1 4` - The `"dropdown"` block's `.trigger` style has the id of 4. This is style definition 4.
311+
6. `1 7` - The `"dropdown"` block's `.trigger[disabled]` style has the id of 7. This is style definition 5.
312312
3. `4 1 0 1 4 2 5 @isNavDisabled 3 3 @navType "side" 1 "top" 2 "hamburger" 3` - There are `4` conditions specified.
313-
1. `1 0` - The style definition `0` is always applied.
314-
2. `1 4` - The style definition `4` is always applied.
315-
3. `2 5 @isNavDisabled` - The style definition `5` is applied if the result of `@isNavDisabled` is truthy.
316-
4. `3 3 @navType "side" 1 "top" 2 "hamburger" 3`. The first `3` means his is a style selector. There are `3` values to select from. The value returned by `@navTap` is a string. If the value is `"side"` then style 1 is applied. If the value is `"top"` then style 2 is applied.If the value is `"hamburger"` then style 3 is applied.
313+
1. `1 0` - The style definition `0` is always applied.
314+
2. `1 4` - The style definition `4` is always applied.
315+
3. `2 5 @isNavDisabled` - The style definition `5` is applied if the result of `@isNavDisabled` is truthy.
316+
4. `3 3 @navType "side" 1 "top" 2 "hamburger" 3`. The first `3` means his is a style selector. There are `3` values to select from. The value returned by `@navTap` is a string. If the value is `"side"` then style 1 is applied. If the value is `"top"` then style 2 is applied.If the value is `"hamburger"` then style 3 is applied.
317317

318318
Implementation Note:
319319

0 commit comments

Comments
 (0)