Merge pull request #2098 from pbrewczynski/patch-1

[swift/en] Updated documentation syntax - small fix
This commit is contained in:
Geoff Liu 2016-01-13 16:34:09 -07:00
commit ea5eed5fcd

View File

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