Closed iPhilip closed 1 year ago
I expanded the BoundFunc Object example to demonstrate calling a BoundFunc object with the first and third parameter of RealFn. I had mistakenly tried to do so with fn(2, , 0). This change could help others who are similarly confused.
RealFn
fn(2, , 0)
fn(2, 0) shows "2, 1," instead of "2, 1, 0", so IsSet(c) ? ", " : "" should be changed to IsSet(c) ? ", " c : "".
fn(2, 0)
IsSet(c) ? ", " : ""
IsSet(c) ? ", " c : ""
Thank you for catching that! I corrected the entry.
I expanded the BoundFunc Object example to demonstrate calling a BoundFunc object with the first and third parameter of
RealFn
. I had mistakenly tried to do so withfn(2, , 0)
. This change could help others who are similarly confused.