-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Add %p modifier to fmt! #8011
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
Hi, I'd love to work on this one. I have found the files which contain the code pertaining to the issue ( |
Judging by the |
@jdm could you please tell me what the exclamation mark in the following declaration means? |
@jdm since the code is merged into the main branch, could you close this issue? |
Avoid inline hints with double backticks for `doc-markdown` The easiest route here was to ensure that the suggestion is always shown on its own line, where no additional backticks are added by the diagnostic formatter. Fixes rust-lang#8002 --- *Please write a short comment explaining your change (or "none" for internal only changes)* changelog: Avoid inline hints with double backticks for `doc-markdown`
I grow tired of printing out unsafe pointer values with fmt!("0x%x", somePointer as uint). It would be nice to use fmt!("%p", somePointer) instead.
The text was updated successfully, but these errors were encountered: