Skip to content

Commit

Permalink
realm#2423 - Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Timofey Solonin authored and sjavora committed Mar 9, 2019
1 parent f11d7ec commit 7ce7a0f
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 @@ -4714,27 +4714,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 7ce7a0f

Please sign in to comment.