Skip to content

Commit c34113d

Browse files
authored
Merge pull request #44 from surechen/edit_format_for_expr_var
修复 'G.EXP.02 不宜在比较中使用不兼容的位掩码' 表格展示问题
2 parents f9a090a + cf6e791 commit c34113d

File tree

1 file changed

+3
-3
lines changed
  • src/safe-guides/coding_practice

1 file changed

+3
-3
lines changed

src/safe-guides/coding_practice/expr.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ a += b;
5151
|== or != | & | x & 2 == 3 | false | c & m != c|
5252
|< or >= | & | x & 2 < 3 | true | m < c|
5353
|> or <= | & | x & 1 > 1 | false | m <= c|
54-
|== or != | | | x | 1 == 0 | false | c | m != c|
55-
|< or >= | | | x | 1 < 1 | false | m >= c|
56-
|<= or > | | | x | 1 > 0 | true | m > c|
54+
|== or != | &#124; | x &#124; 1 == 0 | false | c &#124; m != c|
55+
|< or >= | &#124; | x &#124; 1 < 1 | false | m >= c|
56+
|<= or > | &#124; | x &#124; 1 > 0 | true | m > c|
5757

5858
**【反例】**
5959

0 commit comments

Comments
 (0)