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 = {
8989}
9090```
9191
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
9393semantics, 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 .
9696
9797### Recursive Inline Methods
9898
You can’t perform that action at this time.
0 commit comments