1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-12 17:54:26 +02:00

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

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)."