Skip to content

Commit

Permalink
Update basic-types.md (#160)
Browse files Browse the repository at this point in the history
Changes a typo. It was meant to say "to" but "two" was written
  • Loading branch information
RenierC authored Nov 24, 2023
1 parent d30f849 commit c20fa29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ uint explicitValue = 0;
// (defaultValue == explicitValue) <-- true
```

Types can be cast from one type to another, but not as freely as you may expect. For example, to convert a `uint256` into a `int8`, you need two cast twice:
Types can be cast from one type to another, but not as freely as you may expect. For example, to convert a `uint256` into a `int8`, you need to cast twice:

```solidity
uint256 first = 1;
Expand Down

0 comments on commit c20fa29

Please sign in to comment.