I want to add a space between parameter names of a swift function. I want to achieve something like in the prepare for segue function provided by swift
func prepare(for segue: UIStoryboardSegue, sender: Any?)
That "for segue" parameter name that is used on the function call when you implement it.
Eg. I want to create a function func saveReceipt(for customer:....)
then I want to call the function saveReceipt(for customer:....)