Auto merge of #13274 - Alexendoo:from-str-radix-10-docs, r=xFrednet

Fix code snippet in from_str_radix_10 docs

`<expression>` was being treated as an opening HTML tag

changelog: none
This commit is contained in:
bors 2024-08-16 20:27:10 +00:00
commit 68b222ebd9

View File

@ -22,8 +22,8 @@
///
/// ### Known problems
///
/// This lint may suggest using (&<expression>).parse() instead of <expression>.parse() directly
/// in some cases, which is correct but adds unnecessary complexity to the code.
/// This lint may suggest using `(&<expression>).parse()` instead of `<expression>.parse()`
/// directly in some cases, which is correct but adds unnecessary complexity to the code.
///
/// ### Example
/// ```ignore