Skip to content

Commit dbfbcd0

Browse files
committed
Fixing typo
1 parent 2ec42f3 commit dbfbcd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

documentation/language/08_cheatsheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ let raw_bits: [bool; 32] = Serialize::to_bits_raw(value); // Raw serialization (
454454
assert(a); // assert the value of a is true
455455
assert_eq(a, b); // assert a and b are equal
456456
assert_neq(b, c); // assert b and c are not equal
457-
let tern = boolean ? a : b; // Ternary expression
457+
let ternary = boolean ? a : b; // Ternary expression
458458
```
459459

460460
### Cryptographic

0 commit comments

Comments
 (0)