Skip to content

Commit f2dec9f

Browse files
committed
fix missing println -> print fix
1 parent 6628281 commit f2dec9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ Prefer the `for-in` style of `for` loop over the `for-condition-increment` style
492492
**Preferred:**
493493
```swift
494494
for _ in 0..<3 {
495-
println("Hello three times")
495+
print("Hello three times")
496496
}
497497

498498
for (index, person) in attendeeList.enumerate() {

0 commit comments

Comments
 (0)