summaryrefslogtreecommitdiffhomepage
path: root/swift.html.markdown
diff options
context:
space:
mode:
authorGeoff Liu <cangming.liu@gmail.com>2016-01-13 16:34:09 -0700
committerGeoff Liu <cangming.liu@gmail.com>2016-01-13 16:34:09 -0700
commitea5eed5fcdbd875f7f9a7eed70ac5a46d61b18d7 (patch)
tree0531aa01a9ef55cfbd9a30bbabbfb03b70b5e61e /swift.html.markdown
parente16ad03d4a0209cb88d3e4042252c42c6e977370 (diff)
parent8ecf73a086b41a33058211f7a415b771bb04f79d (diff)
Merge pull request #2098 from pbrewczynski/patch-1
[swift/en] Updated documentation syntax - small fix
Diffstat (limited to 'swift.html.markdown')
-rw-r--r--swift.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/swift.html.markdown b/swift.html.markdown
index e6bf1621..c54f8e00 100644
--- a/swift.html.markdown
+++ b/swift.html.markdown
@@ -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)."