From a18de999c2a77e749809f3dae45afe19e991c44e Mon Sep 17 00:00:00 2001 From: Ian Manske Date: Thu, 7 Mar 2024 03:50:31 +0000 Subject: [PATCH] Fix broken doc link (#12092) Fixes a doc comment link in `Value::to_parsable_string`. --- crates/nu-protocol/src/value/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-protocol/src/value/mod.rs b/crates/nu-protocol/src/value/mod.rs index fbeffc5bb0..c0431011b5 100644 --- a/crates/nu-protocol/src/value/mod.rs +++ b/crates/nu-protocol/src/value/mod.rs @@ -1004,7 +1004,7 @@ impl Value { /// The other `Value` cases are already parsable when converted strings /// or are not yet handled by this function. /// - /// This functions behaves like [`to_formatted_string`](Self::to_formatted_string) + /// This functions behaves like [`to_expanded_string`](Self::to_expanded_string) /// and will recurse into records and lists. pub fn to_parsable_string(&self, separator: &str, config: &Config) -> String { match self {