We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ec42f3 commit dbfbcd0Copy full SHA for dbfbcd0
documentation/language/08_cheatsheet.md
@@ -454,7 +454,7 @@ let raw_bits: [bool; 32] = Serialize::to_bits_raw(value); // Raw serialization (
454
assert(a); // assert the value of a is true
455
assert_eq(a, b); // assert a and b are equal
456
assert_neq(b, c); // assert b and c are not equal
457
-let tern = boolean ? a : b; // Ternary expression
+let ternary = boolean ? a : b; // Ternary expression
458
```
459
460
### Cryptographic
0 commit comments