summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorPaul Brewczynski <pbbluesm@gmail.com>2016-01-13 10:01:46 +0100
committerPaul Brewczynski <pbbluesm@gmail.com>2016-01-13 10:01:46 +0100
commit8ecf73a086b41a33058211f7a415b771bb04f79d (patch)
tree1f958448aa8f0268c449ce653fc19967f086994a
parent7e069bef5d094169c24b7ee5cdd4757eb51e1da3 (diff)
Updated documentation syntax
As Xcode switched to Markdown syntax, I've updated it.
-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)."