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
There is a single function in the flag package whose implementation uses string concatenation instead of the recommended strings.Builder. The function was last touched before strings.Builder was introduced in Go 1.10, which explains the old style code.
I am about to propose a PR to migrate the function to strings.Builder; filing this for tracking purposes.
The text was updated successfully, but these errors were encountered:
Note that it's not necessary to file an issue for a change that does not affect anything user visible. It's OK to just send the change. But filing an issue is OK too. Thanks.
There is a single function in the flag package whose implementation uses string concatenation instead of the recommended strings.Builder. The function was last touched before strings.Builder was introduced in Go 1.10, which explains the old style code.
I am about to propose a PR to migrate the function to strings.Builder; filing this for tracking purposes.
The text was updated successfully, but these errors were encountered: