pub fn format_suggestions(suggestions: &[&str]) -> StringExpand description
Formats a list of suggestions as a hint.
ยงExamples
use grafeo_common::utils::strings::format_suggestions;
assert_eq!(
format_suggestions(&["Person", "Place"]),
"Did you mean one of: 'Person', 'Place'?"
);