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
Dot-prefix local vars when we never want to use similarly-named arg
Local variables `f`, `starts`, and `stops` are never used at the same time as
arguments `.f`, `.starts`, and `.stops`. To prevent accidental usage due to
similar naming, dot-prefix the local variables as well. We might later separate
out helper functions from being nested functions, and this would avoid such
accidents as well; we then may be able to remove some of these dot prefixes if
desired.
0 commit comments