From 3417306e57114f549eb62bf6ddee4969b563da53 Mon Sep 17 00:00:00 2001 From: NotTheDr01ds <32344964+NotTheDr01ds@users.noreply.github.com> Date: Wed, 19 Jun 2024 20:01:20 -0400 Subject: [PATCH] Fix fmt check issues for table help rendering --- crates/nu-engine/src/documentation.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/nu-engine/src/documentation.rs b/crates/nu-engine/src/documentation.rs index 88e115df44..59fcbe6037 100644 --- a/crates/nu-engine/src/documentation.rs +++ b/crates/nu-engine/src/documentation.rs @@ -3,8 +3,8 @@ use nu_protocol::{ ast::{Argument, Call, Expr, Expression, RecordItem}, debugger::WithoutDebug, engine::{Command, EngineState, Stack, UNKNOWN_SPAN_ID}, - record, Category, Example, IntoPipelineData, PipelineData, Signature, Span, SpanId, - SyntaxShape, Type, Value, Spanned + record, Category, Example, IntoPipelineData, PipelineData, Signature, Span, SpanId, Spanned, + SyntaxShape, Type, Value, }; use std::{collections::HashMap, fmt::Write}; @@ -300,7 +300,7 @@ fn get_documentation( table_expand_call.add_named(( Spanned { item: "expand".to_string(), - span: Span::unknown() + span: Span::unknown(), }, None, None,