Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

write! statements can be simplified #147

Closed
hamirmahal opened this issue Oct 23, 2024 · 1 comment · May be fixed by #148
Closed

write! statements can be simplified #147

hamirmahal opened this issue Oct 23, 2024 · 1 comment · May be fixed by #148

Comments

@hamirmahal
Copy link

We can replace code like

write!(f, "{:?}-{:?}", start, end)?;

with

write!(f, "{start:?}-{end:?}")?;
@BurntSushi
Copy link
Owner

This type of thing really isn't worth tracking. And PRs making this sort of change aren't something I'll prioritize.

@BurntSushi BurntSushi closed this as not planned Won't fix, can't repro, duplicate, stale Feb 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants