Skip to main content

format_suggestions

Function format_suggestions 

Source
pub fn format_suggestions(suggestions: &[&str]) -> String
Expand 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'?"
);