Updated documentation syntax

As Xcode switched to Markdown syntax, I've updated it.
This commit is contained in:
Paul Brewczynski 2016-01-13 10:01:46 +01:00
parent 7e069bef5d
commit 8ecf73a086

View File

@ -221,9 +221,9 @@ A greet operation
- A bullet in docs - A bullet in docs
- Another bullet in the docs - Another bullet in the docs
:param: name A name - Parameter name : A name
:param: day A day - Parameter day : A day
:returns: A string containing the name and day value. - Returns : A string containing the name and day value.
*/ */
func greet(name: String, day: String) -> String { func greet(name: String, day: String) -> String {
return "Hello \(name), today is \(day)." return "Hello \(name), today is \(day)."