You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note the line _f1 *= c;, I believe it should be _f1 *= _c;.
It happens to work because everywhere it is called the input variable happens to be named 'c' so the replace("_c", c) isn't strictly necessary in those cases.
The text was updated successfully, but these errors were encountered:
I believe there is a typo in the template below:
Note the line
_f1 *= c;
, I believe it should be_f1 *= _c;
.It happens to work because everywhere it is called the input variable happens to be named 'c' so the
replace("_c", c)
isn't strictly necessary in those cases.The text was updated successfully, but these errors were encountered: