Remove return() from end of functions and replace with object that should be returned.
For example, return(x) would be replaced with x.
See style guide for rationale.
Hint: a good way to see where the function is referenced is to looks for it using edit>Find in files (ctrl + shift +F)
Remove
return()from end of functions and replace with object that should be returned.For example,
return(x)would be replaced withx.See style guide for rationale.
Hint: a good way to see where the function is referenced is to looks for it using edit>Find in files (ctrl + shift +F)