DarkMatter.Strings.capitalize_words

You're seeing just the function capitalize_words, go back to DarkMatter.Strings module for more information.
Link to this function

capitalize_words(binary, separator \\ " ")

View Source

Specs

capitalize_words(String.t(), String.t()) :: String.t()

Capitalizes all words in the given binary that are separated by the given separator

Examples

iex> capitalize_words("a dog ran down the street")
"A Dog Ran Down The Street"