File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs/docs/reference/metaprogramming Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -89,10 +89,10 @@ def factorial(n: BigInt): BigInt = {
89
89
}
90
90
```
91
91
92
- Note, that the by-value parameter is evaluated only once, per the usual Scala
92
+ Note, that the by-value parameter ` msg ` is evaluated only once, per the usual Scala
93
93
semantics, by binding the value and reusing the ` msg ` through the body of
94
- ` factorial ` . Also, note the special handling of setting to the private var
95
- ` indent ` by generating the setter method ` def inline$indent_= ` .
94
+ ` factorial ` . Also, note the special handling of the assignment to the private var
95
+ ` indent ` . It is achieved by generating a setter method ` def inline$indent_= ` and calling it instead .
96
96
97
97
### Recursive Inline Methods
98
98
You can’t perform that action at this time.
0 commit comments