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
Replace -> with :: where appropriate in docstrings (#57012)
In cases where a function is documented as
```
function(arg::ArgT, arg2::Arg2T) -> RetT
...
```
I either switched ` -> ` to `::` or switched `RetT` to `ret_name::RetT`.
From the recommendation and justification from @nsajko here:
#56978 (comment) and
applied throughout the repo.
As documented here #57583
Also includes some minor changes to touched lines (e.g. removing annotations that are just clutter)
0 commit comments