We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f32b1e1 commit 1dae2d4Copy full SHA for 1dae2d4
README.md
@@ -14,9 +14,14 @@ Please have a look at the UsageExamples.playground for a complete list of featur
14
15
#### .times
16
17
-``` Swift
18
-3.times{ array.append("Hello World!") } // => ["Hello World!", "Hello World!", "Hello World!"]
19
-3.times{ array.append("Hello World #\($0)!") } // => ["Hello World #1!", "Hello World #2!", "Hello World #3!"]
+```
+3.times{ array.append("Hello World!") }
+// => ["Hello World!", "Hello World!", "Hello World!"]
20
21
+
22
23
+3.times{ array.append("Hello World #\($0)!") }
24
+// => ["Hello World #1!", "Hello World #2!", "Hello World #3!"]
25
```
26
27
## Contributing
0 commit comments