File tree 1 file changed +7
-7
lines changed
compiler/rustc_ast_lowering/src
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -220,19 +220,19 @@ fn make_argument<'hir>(
220
220
/// Generates:
221
221
///
222
222
/// ```text
223
- /// <core::fmt::rt::v1:: Count>::Is(…)
223
+ /// <core::fmt::rt::Count>::Is(…)
224
224
/// ```
225
225
///
226
226
/// or
227
227
///
228
228
/// ```text
229
- /// <core::fmt::rt::v1:: Count>::Param(…)
229
+ /// <core::fmt::rt::Count>::Param(…)
230
230
/// ```
231
231
///
232
232
/// or
233
233
///
234
234
/// ```text
235
- /// <core::fmt::rt::v1:: Count>::Implied
235
+ /// <core::fmt::rt::Count>::Implied
236
236
/// ```
237
237
fn make_count < ' hir > (
238
238
ctx : & mut LoweringContext < ' _ , ' hir > ,
@@ -278,13 +278,13 @@ fn make_count<'hir>(
278
278
/// Generates
279
279
///
280
280
/// ```text
281
- /// <core::fmt::rt::v1::Argument ::new(
281
+ /// <core::fmt::rt::Placeholder ::new(
282
282
/// …usize, // position
283
283
/// '…', // fill
284
- /// <core::fmt::rt::v1:: Alignment>::…, // alignment
284
+ /// <core::fmt::rt::Alignment>::…, // alignment
285
285
/// …u32, // flags
286
- /// <core::fmt::rt::v1:: Count::…>, // width
287
- /// <core::fmt::rt::v1:: Count::…>, // precision
286
+ /// <core::fmt::rt::Count::…>, // width
287
+ /// <core::fmt::rt::Count::…>, // precision
288
288
/// )
289
289
/// ```
290
290
fn make_format_spec < ' hir > (
You can’t perform that action at this time.
0 commit comments