Skip to content

Commit d057960

Browse files
committed
Update README.md
1 parent d490643 commit d057960

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ func outputDetailsForPath(path: String, fileSize: Int, extension: String,
115115
### Whitespaces around binary and unary operators.
116116
Rationale: Operators are usually special symbols(+-/) and when they dont have enough whitespaces they make code much harder to read. The white spaces rule is very universal and simple to remember:
117117
#####Binary operators: One space before and one space after
118-
#####Unary operators: Just once space either before or after the operator
119118
Examples:
120119
**Good:**
121120
```swift
@@ -158,6 +157,7 @@ let rowHeight = hasHeader ? 50 : 20
158157
let rowHeight=hasHeader?50:20
159158
```
160159

160+
```
161161
Also, it stands for if else statements:
162162
**Good:**
163163
```swift

0 commit comments

Comments
 (0)