From 7ce7a0f57d669246ba7815cf731e6bb27316f6d0 Mon Sep 17 00:00:00 2001 From: Timofey Solonin Date: Tue, 2 Oct 2018 19:54:25 +0300 Subject: [PATCH] #2423 - Update documentation --- Rules.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Rules.md b/Rules.md index 91142bbdcb9..1f2685198b3 100644 --- a/Rules.md +++ b/Rules.md @@ -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 ```