Skip to content

Commit

Permalink
#2423 - Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Timofey Solonin committed Oct 2, 2018
1 parent e51646a commit 21cd4e0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -4713,27 +4713,27 @@ var count = 0
```

```swift
discount == 0
[Int]().count == 0xff

```

```swift
order.discount == 0
[Int]().count == 0b01

```

```swift
[Int]().count == 0xff
[Int]().count == 0o07

```

```swift
[Int]().count == 0b01
discount == 0

```

```swift
[Int]().count == 0o07
order.discount == 0

```

Expand Down

0 comments on commit 21cd4e0

Please sign in to comment.