From 94a7e3bd6c70f0acf27d86413fb39aa23f9977e4 Mon Sep 17 00:00:00 2001 From: Asger Hautop Drewsen Date: Tue, 30 Sep 2025 22:41:47 +0200 Subject: [PATCH] Remove weird extra spaces in code --- src/scope/lifetime/static_lifetime.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scope/lifetime/static_lifetime.md b/src/scope/lifetime/static_lifetime.md index ec1b75ea67..f4286f6675 100644 --- a/src/scope/lifetime/static_lifetime.md +++ b/src/scope/lifetime/static_lifetime.md @@ -100,8 +100,8 @@ does not: ```rust,editable,compile_fail use std::fmt::Debug; -fn print_it( input: impl Debug + 'static ) { - println!( "'static value passed in is: {:?}", input ); +fn print_it(input: impl Debug + 'static) { + println!("'static value passed in is: {:?}", input); } fn main() {