Fix list formatting in documention (#9886)

## Summary

Adds a blank line to render the list correctly.

## Test Plan

Ocular inspection
This commit is contained in:
Tom Kuson 2024-02-08 01:01:21 +00:00 committed by GitHub
parent 45937426c7
commit ed07fa08bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,6 +18,7 @@ use rustc_hash::FxHashSet;
/// ///
/// Since there are many possible string literals which contain syntax similar to f-strings yet are not intended to be, /// Since there are many possible string literals which contain syntax similar to f-strings yet are not intended to be,
/// this lint will disqualify any literal that satisfies any of the following conditions: /// this lint will disqualify any literal that satisfies any of the following conditions:
///
/// 1. The string literal is a standalone expression. For example, a docstring. /// 1. The string literal is a standalone expression. For example, a docstring.
/// 2. The literal is part of a function call with keyword arguments that match at least one variable (for example: `format("Message: {value}", value = "Hello World")`) /// 2. The literal is part of a function call with keyword arguments that match at least one variable (for example: `format("Message: {value}", value = "Hello World")`)
/// 3. The literal (or a parent expression of the literal) has a direct method call on it (for example: `"{value}".format(...)`) /// 3. The literal (or a parent expression of the literal) has a direct method call on it (for example: `"{value}".format(...)`)